-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
44 lines (44 loc) · 1.32 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
{
"name": "peerai-api",
"version": "1.0.0",
"main": "index.js",
"author": "Luke Schoen",
"license": "MIT",
"dependencies": {
"body-parser": "^1.18.2",
"eth-lightwallet": "2.5",
"ethereumjs-tx": "1.3",
"ethereumjs-util": "4.4",
"express": "^4.16.2",
"jsonwebtoken": "^8.1.0",
"lodash": "^4.17.4",
"mongoose": "^4.13.7",
"passport": "^0.4.0",
"passport-jwt": "^3.0.1",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^4.4.0",
"web3": "0.19"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"dotenv": "^4.0.0",
"ether-pudding": "^3.2.0",
"mocha": "^4.0.1",
"nodemon": "^1.13.3",
"solc": "^0.4.18",
"truffle-artifactor": "^3.0.1"
},
"scripts": {
"mongod": "mongod",
"dev": "NODE_ENV=development nodemon server.js",
"compile": "node lib/compileContract.js Peerism",
"deploy": "node lib/deployContract.js Peerism",
"curl": "curl -v -X POST http://localhost:7000/contracts/generate -d '{\"contractName\":\"Peerism\"}' -H 'Content-Type: application/json'",
"seed": "node ./models/seeds.js",
"drop": "node ./models/drop.js",
"reset": "npm run drop && npm run seed",
"test": "truffle test; NODE_ENV=testing mocha --recursive test/**/*_test.js",
"test-watch": "nodemon --exec \"yarn test\""
}
}