-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.36 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
38
39
40
41
42
43
44
45
{
"name": "typing",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "cross-env APP_ENV=production next build",
"dev": "cross-env APP_ENV=local next dev",
"start": "cross-env APP_ENV=production next start -p 8080",
"export": "next export"
},
"author": "",
"license": "ISC",
"dependencies": {
"@reduxjs/toolkit": "^1.7.1",
"axios": "^0.22.0",
"helmet": "^5.0.1",
"next": "^11.1.2",
"next-cookies": "^2.0.3",
"next-redux-wrapper": "^7.0.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-helmet": "^6.1.0",
"react-redux": "^7.2.6",
"styled-components": "^5.3.3",
"swr": "^1.0.1"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@types/react": "^17.0.27",
"@types/react-dom": "^17.0.9",
"@types/react-redux": "^7.1.19",
"babel-loader": "^8.2.2",
"babel-plugin-styled-components": "^1.13.2",
"babel-preset-react-app": "^10.0.0",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"prettier": "^2.4.1",
"typescript": "^4.4.3"
}
}