-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.95 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
{
"name": "Ethervote",
"version": "1.0.1",
"description": "Ethervote, a blockchain based voting system",
"scripts": {
"setup": "create-react-app frontend && npm run addProxy",
"start": "concurrently -k \"npm run dev\" \"npm run react\"",
"test-server": "jest",
"test-react": "cd frontend && npm test",
"lint": "eslint ./server/**/*.js",
"build": "rm -rf dist && npm run buildServer && npm run buildReact",
"deploy": "pm2 start deploy.json",
"dev": "NODE_ENV=dev nodemon -e js ./server/index.js --exec babel-node --presets es2015,stage-2 --ignore ./server/__test__/ --ignore ./frontend/ --ignore ./scripts/",
"buildServer": "babel ./server -s -D -d dist",
"buildReact": "cd frontend && npm run build && mv build ../dist/public",
"react": "node ./scripts/reactDev",
"addProxy": "node ./scripts/addProxy"
},
"keywords": [
"react",
"express",
"javascript",
"full-stack",
"template",
"node"
],
"author": "Haochuan Liu<haochuan.liu@gmail.com>(https://haochuan.io)",
"license": "MIT",
"dependencies": {
"body-parser": "^1.17.2",
"bootstrap": "^3.3.7",
"compression": "^1.7.0",
"express": "^4.15.3",
"fs": "0.0.1-security",
"ganache-cli": "^6.1.0",
"helmet": "^3.8.0",
"install": "^0.12.2",
"morgan": "^1.8.2",
"node": "^9.11.0",
"rc-menu": "^7.0.3",
"react": "^16.8.6",
"react-bootstrap": "^0.32.1",
"react-dom": "^16.3.0",
"react-router-dom": "^4.2.2",
"react-scripts": "^3.0.0",
"react-web3": "^0.4.5",
"reactstrap": "^6.0.1",
"require-from-string": "^2.0.2",
"serve-favicon": "^2.4.3",
"truffle": "^4.1.8",
"web3": "github:ethereum/web3.js"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"chalk": "^2.4.1",
"concurrently": "^3.5.0",
"create-react-app": "^3.0.0",
"nodemon": "^1.17.4",
"react-script": "^2.0.5"
}
}