-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.25 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
{
"name": "aztec-ganache-starter-kit",
"version": "1.0.0",
"description": "A starter kit to help dApp developers run ganache on a local blockchain",
"main": "index.js",
"license": "MIT",
"dependencies": {
"@0x/sol-trace": "^2.0.16",
"@aztec/dev-utils": "0.12.2",
"@aztec/protocol": "0.9.0",
"@aztec/secp256k1": "1.0.1",
"aztec.js": "0.11.1",
"chai": "^4.2.0",
"ethers": "^4.0.33",
"openzeppelin-solidity": "^2.2.0",
"truffle-contract": "^4.0.27",
"web3": "^1.0.0-beta.51"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/runtime": "^7.4.2",
"dotenv": "^7.0.0",
"ganache-cli": "^6.4.3",
"ganache-core": "^2.5.4-beta.2",
"solhint": "^2.0.0",
"solium": "^1.2.3",
"truffle": "^5.0.17"
},
"scripts": {
"compile": "truffle compile --all",
"migrate": "truffle compile --all && truffle migrate --reset",
"ganache": "babel-node scripts/run ganache",
"demo": "truffle demo.js",
"start": "npm run ganache"
}
}