-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 908 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 908 Bytes
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
{
"name": "block-chain-dev",
"version": "1.0.0",
"description": " This is a blockchain technology testing project for the authors to test their skills, understand blockchain, and have fun!",
"main": "index.js",
"scripts": {
"test": "jest -i --coverage",
"lint": "eslint .",
"start": "node index.js",
"dbon": "mkdir -p ./db && mongod --dbpath ./db",
"dboff": "killall mongod"
},
"author": "Seth Donohue, Nicholas Carignan, Kerry Nordstrom, Jacob Evans",
"license": "MIT",
"devDependencies": {
"dotenv": "^4.0.0",
"eslint": "^4.19.1",
"jest": "^21.2.1",
"superagent": "^3.8.3"
},
"dependencies": {
"body-parser": "^1.18.3",
"express": "^4.16.4",
"faker": "^4.1.0",
"httperrors": "^2.3.0",
"jest": "^21.2.1",
"jshashes": "^1.0.7",
"mongoose": "^4.13.17",
"winston": "^2.4.4"
},
"engines": {
"node": "8.9.3"
}
}