forked from omni/bridge-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.54 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
{
"name": "bridge",
"version": "0.1.0",
"private": true,
"homepage": "https://poanetwork.github.io/",
"dependencies": {
"bignumber.js": "^6.0.0",
"chromedriver": "^2.35.0",
"coveralls": "^3.0.0",
"fs-extra": "^5.0.0",
"gh-pages": "^1.1.0",
"mobx": "^4.0.2",
"mobx-react": "^5.0.0",
"mocha": "^5.1.1",
"node-sass-chokidar": "^1.0.1",
"nodemon": "^1.17.1",
"npm": "^5.7.1",
"numeral": "^2.0.6",
"react": "^16.2.0",
"react-app-rewire-mobx": "^1.0.7",
"react-app-rewired": "^1.5.0",
"react-copy-to-clipboard": "^5.0.1",
"react-dom": "^16.2.0",
"react-router-dom": "^4.2.2",
"react-scripts": "1.1.1",
"react-transition-group": "^2.2.1",
"selenium-webdriver": "^3.6.0",
"sweetalert": "^2.1.0",
"web3": "^1.0.0-beta.30"
},
"scripts": {
"build-css": "node-sass-chokidar src/assets/stylesheets/application.scss -o src/assets/stylesheets --output-style=compressed",
"watch-css": "nodemon -e scss -x \"npm run build-css\"",
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test --env=jsdom",
"startBridge": "cd ./e2e-script && cp .env.example ./../.env && cd ./../ && npm install && npm start",
"startE2e": "mocha -b ./e2e-script/test.js",
"coverage": "react-app-rewired test --env=jsdom --coverage",
"coveralls": "cat ./coverage/lcov.info | node node_modules/.bin/coveralls",
"eject": "react-app-rewired eject",
"predeploy": "npm run build",
"deploy": "gh-pages -d build -o origin"
}
}