-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 930 Bytes
/
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": "react-ts",
"version": "2.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "next dev -p 3333",
"build": "next build",
"start": "next start -p 3333",
"generate": "next build && next export",
"export": "next export",
"lint": "next lint"
},
"dependencies": {
"@ant-design/icons": "^4.7.0",
"@reduxjs/toolkit": "^1.8.2",
"antd": "^5.0.0",
"dayjs": "^1.10.6",
"next": "^13.1.1",
"qs": "^6.11.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.2"
},
"devDependencies": {
"@types/node": "^18.0.0",
"@types/qs": "^6.9.7",
"@types/react": "^18.0.14",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.26.0",
"eslint": "^7.32.0",
"eslint-config-next": "^13.1.6",
"sass": "^1.37.5",
"typescript": "^4.9.5",
"webpack-bundle-analyzer": "^4.4.2"
}
}