-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1.01 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "portfolio",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && next export",
"start": "next start"
},
"dependencies": {
"next": "^10.0.5",
"next-pwa": "^5.0.4",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-typed": "^1.2.0",
"styled-components": "^5.2.1"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.10.4",
"@testing-library/react": "^11.2.3",
"@types/node": "^14.0.27",
"@types/react": "^17.0.0",
"@types/styled-components": "^5.1.2",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"babel-loader": "^8.1.0",
"babel-plugin-styled-components": "^1.11.1",
"eslint": "^7.6.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.0.8",
"typescript": "^4.1.3"
}
}