-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.75 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.75 KB
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
{
"name": "connect-four",
"version": "1.0.1",
"description": "A Connect four DApp",
"main": "truffle-config.js",
"directories": {
"test": "test"
},
"scripts": {
"clean": "rm -rf build",
"build": "truffle compile && webpack",
"webpack": "webpack",
"dev": "truffle deploy --network ganache && webpack-dev-server",
"test": "truffle deploy --network ganache && truffle test --network ganache",
"deploy-ropsten": "npm run clean && truffle compile && truffle migrate --network ropsten && webpack",
"windev": "truffle.cmd deploy --network ganache && webpack-dev-server",
"wintest": "truffle.cmd deploy --network ganache && truffle.cmd test --network ganache"
},
"repository": {
"type": "git",
"url": "git+https://dmelcer9@github.com/dmelcer9/connect-four-dapp.git"
},
"author": "Daniel Melcer",
"license": "MIT",
"bugs": {
"url": "https://github.com/dmelcer9/connect-four-dapp/issues"
},
"homepage": "https://github.com/dmelcer9/connect-four-dapp#readme",
"dependencies": {
"moment": "^2.22.2",
"openzeppelin-solidity": "^1.5.0",
"react": "^16.6.3",
"react-dom": "^16.6.3",
"truffle": "^4.1.14",
"truffle-hdwallet-provider": "0.0.3",
"w3-css": "^4.1.0",
"web3": "^1.0.0-beta.36",
"zeppelin-solidity": "^1.12.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.5",
"babel-preset-react": "^6.24.1",
"copy-webpack-plugin": "^4.6.0",
"css-loader": "^0.28.11",
"extract-text-webpack-plugin": "^3.0.2",
"ganache-cli": "^6.2.3",
"prop-types": "^15.6.2",
"style-loader": "^0.19.1",
"truffle-contract": "^3.0.6",
"truffle-solidity-loader": "0.0.8",
"webpack": "^3.12.0",
"webpack-dev-server": "^2.11.3"
}
}