-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
83 lines (83 loc) · 2.64 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "app",
"version": "0.1.0",
"private": true,
"dependencies": {
"@scatterjs/core": "2.7.44",
"@scatterjs/eosjs2": "1.5.25",
"ant-design-pro": "2.3.2",
"antd": "3.24.3",
"babel-cli": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"big-integer": "^1.6.44",
"body-parser": "^1.18.3",
"colors": "^1.4.0",
"cors": "^2.8.4",
"crypto-js": "^3.1.9-1",
"dotenv": "^8.2.0",
"env-cmd": "^10.0.1",
"eosjs": "^20.0.0",
"eosjs-ecc": "^4.0.4",
"ethereumjs-util": "5.2.0",
"express": "^4.16.3",
"jsonwebtoken": "^8.5.0",
"moment": "^2.24.0",
"ngx-json-viewer": "^2.4.0",
"node-sass-chokidar": "^1.3.5",
"nodemon": "^1.17.5",
"npm-run-all": "^4.1.5",
"prop-types": "^15.7.2",
"proxy-polyfill": "^0.3.0",
"query-string": "6.7.0",
"rc-queue-anim": "^1.6.12",
"react": "^16.8.6",
"react-app-polyfill": "^1.0.5",
"react-dom": "^16.8.6",
"react-json-view": "^1.19.1",
"react-moment": "^0.9.2",
"react-redux": "^7.1.0",
"react-router-dom": "^5.0.1",
"react-scripts": "3.0.1",
"react-simple-maps": "^0.12.1",
"react-tooltip": "^3.10.0",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"text-encoding": "^0.7.0",
"typeface-open-sans": "0.0.54",
"web3": "1.2.4"
},
"scripts": {
"server:testchain:local": "env-cmd -f .env.testchain.local ./node_modules/.bin/nodemon --watch server --exec babel-node -- server/index.js",
"server:testchain:prod": "env-cmd -f .env.testchain.prod babel-node -- server/index.js",
"server:remchain:local": "env-cmd -f .env.remchain.local ./node_modules/.bin/nodemon --watch server --exec babel-node -- server/index.js",
"server:remchain:prod": "env-cmd -f .env.remchain.prod babel-node -- server/index.js",
"start:testchain:local": "env-cmd -f .env.testchain.local npm-run-all -p watch-css start-js",
"start:remchain:local": "env-cmd -f .env.remchain.local npm-run-all -p watch-css start-js",
"build:testchain": "env-cmd -f .env.testchain.prod react-scripts build",
"build:remchain": "env-cmd -f .env.remchain.prod react-scripts build",
"build-css": "node-sass-chokidar src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive",
"start-js": "react-scripts start"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"babel": {
"presets": [
"env"
]
}
}