-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.53 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": "review-network-companies",
"version": "0.1.0",
"private": true,
"dependencies": {
"aws-sdk": "^2.306.0",
"axios": "^0.18.0",
"bip39": "^2.5.0",
"eth-crypto": "^1.2.3",
"eth-ecies": "^1.0.3",
"lodash": "^4.17.10",
"mobx": "^5.0.3",
"mobx-react": "^5.2.3",
"mobx-react-devtools": "^6.0.1",
"moment": "^2.22.2",
"nanoid": "^1.2.1",
"node-sass-chokidar": "^1.3.0",
"npm-run-all": "^4.1.3",
"prop-types": "^15.6.2",
"react": "^16.4.1",
"react-app-rewire-mobx": "^1.0.8",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.4.1",
"react-loadable": "^5.4.0",
"react-minimal-pie-chart": "^3.3.0",
"react-overlay-loader": "^0.0.3",
"react-router-dom": "^4.3.1",
"react-scripts": "1.1.4",
"rfx-core": "^1.6.0",
"web3": "^1.0.0-beta.35"
},
"scripts": {
"build-css": "node-sass-chokidar --include-path ./src --include-path ./node_modules src/ src/ -o src/",
"watch-css": "npm run build-css && node-sass-chokidar --include-path ./src --include-path ./node_modules src/ src/ -o src/ --watch --recursive",
"start-js": "react-app-rewired start",
"start": "npm-run-all -p watch-css start-js",
"build-js": "react-app-rewired build",
"build": "npm-run-all build-css build-js",
"test": "react-app-rewired test --env=jsdom",
"eject": "react-scripts eject"
},
"devDependencies": {
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.2",
"prettier": "^1.13.7",
"react-app-rewired": "^1.5.2"
}
}