-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1020 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 1020 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
35
36
37
38
39
40
41
{
"name": "veh-api",
"version": "0.0.1",
"description": "VEH Project API",
"private": true,
"scripts": {
"dev": "mono dev",
"start": "cross-env NODE_ENV=production mono",
"lint": "eslint src/ conf/ test/",
"test": "npm run lint && nyc ava --verbose --serial --fail-fast test/ && nyc report --reporter=html",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"nyc": {
"include": [
"src/"
]
},
"license": "MIT",
"dependencies": {
"axios": "^0.18.0",
"bcrypt": "^3.0.1",
"bigchaindb-driver": "^4.1.0",
"bigchaindb-orm": "^3.0.1",
"cors": "^2.8.4",
"cross-env": "^5.1.1",
"moment": "^2.22.2",
"mongodb-utils": "latest",
"mongoose": "^5.3.4",
"mono-core": "latest",
"mono-doc": "latest",
"mono-mongodb": "latest",
"ramda": "^0.25.0"
},
"devDependencies": {
"ava": "^0.25.0",
"codecov": "^3.0.0",
"eslint": "^4.13.1",
"mono-test-utils": "^1.2.3",
"nyc": "^11.3.0"
}
}