forked from Decentrix/TetriX
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.11 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
{
"name": "tetrix",
"version": "1.0.0",
"description": "- client - server",
"main": "index.js",
"scripts": {
"start": "node ./index",
"server": "nodemon server/server.js",
"build": "webpack && npm run server",
"webpack": "webpack -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Decentrix/TetriX.git"
},
"keywords": [],
"author": "Joseph Wu Pauline Chang Esther Kim",
"license": "ISC",
"bin": {
"Tetrix": "./index.js"
},
"bugs": {
"url": "https://github.com/Decentrix/TetriX/issues"
},
"homepage": "https://github.com/Decentrix/TetriX#readme",
"devDependencies": {
"css-loader": "^0.28.11",
"nodemon": "^1.17.3",
"style-loader": "^0.21.0"
},
"dependencies": {
"babel-loader": "^7.1.4",
"babel-preset-react": "^6.24.1",
"chalk": "^2.4.1",
"child_process": "^1.0.2",
"express": "^4.16.3",
"ganache-cli": "^6.1.0",
"material-ui": "^0.20.0",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-router-dom": "^4.2.2",
"solc": "^0.4.23",
"web3": "^1.0.0-beta.34",
"webpack": "^4.8.1"
}
}