-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.08 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.08 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
{
"name": "etherwave",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"dev": "nodemon ./bin/www",
"testrpc": "./node_modules/.bin/ganache-cli --accounts 30",
"lint": "./node_modules/.bin/solium -d contracts --fix",
"coverage": "./node_modules/.bin/solidity-coverage",
"truffle-compile": "./node_modules/.bin/truffle compile",
"truffle-test": "./node_modules/.bin/truffle test",
"truffle-migrate": "./node_modules/.bin/truffle migrate"
},
"dependencies": {
"body-parser": "^1.18.3",
"cookie-parser": "~1.4.3",
"debug": "~2.6.0",
"ejs": "~2.5.5",
"express": "^4.16.3",
"mongoose": "^5.1.1",
"morgan": "^1.9.0",
"multer": "^1.3.0",
"openzeppelin-solidity": "^1.9.0",
"serve-favicon": "^2.5.0",
"truffle": "^4.1.11",
"web3": "^1.0.0-beta.34"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-bignumber": "^2.0.2",
"ganache-cli": "^6.1.0",
"solidity-coverage": "^0.5.4",
"solium": "^1.1.7",
"truffle-contract": "^3.0.5"
}
}