-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 958 Bytes
/
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
{
"name": "p2ns",
"version": "0.1.0",
"private": true,
"dependencies": {
"material-ui": "^1.0.0-beta.43",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-scripts": "1.1.4",
"surge": "^0.20.1",
"truffle-contract": "^3.0.5",
"web3": "^1.0.0-beta.34"
},
"scripts": {
"postinstall": "truffle deploy --network rinkeby && ln -s build/contracts src/contracts",
"start": "cp build/contracts/*.json src/contracts && react-scripts start",
"build": "cp build/contracts/*.json src/contracts && react-scripts build",
"test": "truffle test",
"eject": "react-scripts eject",
"chain": "ganache-cli",
"deploy": "truffle deploy",
"compile": "truffle compile",
"testnet": "truffle deploy --network ropsten",
"surge": "surge --project build --domain p2ns.surge.sh"
},
"devDependencies": {
"ganache-cli": "^6.1.0",
"truffle": "^4.1.7",
"truffle-hdwallet-provider": "^0.0.3"
}
}