-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.18 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
{
"name": "ipfs-game-uploader",
"homepage": "./",
"version": "0.1.0",
"private": true,
"dependencies": {
"@requestnetwork/request-network.js": "^0.9.0",
"fs-extra": "^7.0.0",
"ipfs-api": "^24.0.0",
"react": "^16.6.0",
"react-bootstrap": "^0.32.3",
"react-dom": "^16.6.0",
"react-helmet": "^5.2.0",
"react-particle-animation": "^1.0.1",
"react-redux": "^5.1.1",
"react-router-dom": "^4.3.1",
"react-scripts": "2.0.5",
"reactjs-popup": "^1.3.1",
"redux": "^4.0.1",
"redux-form": "^7.4.2",
"redux-thunk": "^2.3.0",
"web3": "^1.0.0-beta.36",
"xtend": "^4.0.1"
},
"scripts": {
"watch-css": "npm run build-css && node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/ --watch --recursive",
"start-js": "set PORT=3000 && react-scripts start",
"start": "npm-run-all -p watch-css start-js",
"ganache": "ganache-cli",
"deploy:smartcontract": "node test/utils/deployer/smartcontract-deployer.js",
"test:mocha": "mocha --bail -t 500000",
"test:dev": "npm-run-all deploy:smartcontract test:mocha",
"test:serve": "set PORT=3000 && serve -s build",
"test:build": "npm-run-all build test:serve",
"test:setup:run": "parallelshell \"npm run ganache\" \"npm run deploy:smartcontract\" \"sleep 10 && npm run test:build\" \"sleep 45 && npm run test:mocha\"",
"test": "npm run test:setup:run",
"build-css": "node-sass-chokidar --include-path ./src --include-path ./node_modules src/ -o src/",
"build-js": "react-scripts build",
"build": "npm-run-all build-css build-js",
"ipfs": "node scripts/upload-to-ipfs.js",
"deploy": "npm-run-all build ipfs"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"devDependencies": {
"chai": "^4.2.0",
"chromedriver": "^2.43.1",
"ganache-cli": "^6.1.8",
"ganache-core": "^2.2.1",
"geckodriver": "^1.12.2",
"mocha": "^5.2.0",
"node-sass-chokidar": "^1.3.4",
"npm-run-all": "^4.1.3",
"parallelshell": "^3.0.2",
"selenium-webdriver": "^4.0.0-alpha.1",
"serve": "^10.0.2",
"solc": "^0.4.25"
}
}