-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.29 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
46
47
48
{
"name": "react-ssr-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"pm2:start": "pm2 start pm2.json",
"pm2:reload": "pm2 reload pm2.json",
"pm2:delete": "pm2 delete pm2.json"
},
"dependencies": {
"antd": "^4.9.4",
"axios": "^0.21.1",
"classnames": "^2.2.6",
"dayjs": "^1.8.19",
"natur": "^2.1.1-beta2",
"natur-persist": "^1.2.2",
"natur-promise-watcher": "^1.0.1",
"natur-service": "^2.1.2",
"next": "10.0.4",
"react": "17.0.1",
"react-dom": "17.0.1"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-decorators": "^7.12.12",
"@types/node": "^14.14.16",
"@types/react": "^17.0.0",
"@typescript-eslint/eslint-plugin": "^2.19.2",
"@typescript-eslint/parser": "^2.19.2",
"babel-eslint": "^10.0.3",
"chokidar": "^3.4.3",
"eslint": "^7.16.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^3.0.3",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-react": "^7.13.0",
"eslint-plugin-react-hooks": "1.x",
"less": "3.11.3",
"rimraf": "^3.0.2",
"sass": "^1.30.0",
"typescript": "^4.1.3"
}
}