-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.25 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
{
"name": "vsys-explorer",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "DEPLOY_MODE=dev DEV_BACKEND=http://157.230.241.14:9081/api node server.js",
"dev-test": "DEPLOY_MODE=test TEST_BACKEND=http://157.230.241.14:9080/api node server.js",
"dev-prod": "DEPLOY_MODE=prod MAIN_BACKEND=http://146.190.148.68:9080/api node server.js",
"build": "DEPLOY_MODE=prod next build",
"build-test": "DEPLOY_MODE=test next build",
"build-dev": "DEPLOY_MODE=dev next build",
"start-next": "next start -p $PORT",
"start": "DEPLOY_MODE=prod NODE_ENV=production node server.js",
"lint": "next lint",
"export": "next export"
},
"dependencies": {
"@reduxjs/toolkit": "^1.8.5",
"antd": "^4.24.16",
"axios": "^0.27.2",
"bignumber.js": "^9.1.1",
"bs58": "^5.0.0",
"express": "^4.18.1",
"http-proxy-middleware": "^2.0.6",
"next": "12.2.5",
"postcss-pxtorem": "^6.0.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-redux": "^8.0.2",
"redux": "^4.2.0",
"sass": "^1.54.5"
},
"devDependencies": {
"@types/node": "18.7.13",
"@types/react": "18.0.17",
"@types/react-dom": "18.0.6",
"eslint": "8.23.0",
"eslint-config-next": "12.2.5",
"typescript": "4.8.2"
}
}