-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 851 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 851 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
{
"name": "hoslab",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"test": "NODE_ENV=test jest --watchAll --verbose --runInBand ",
"covered-test": "NODE_ENV=test jest --watchAll --verbose --runInBand --coverage ",
"start": "export NODE_ENV= && node server/",
"dev": "export NODE_ENV= && nodemon server/",
"run-docker": "docker-compose up -d couchdb && docker-compose up app"
},
"dependencies": {
"body-parser": "^1.18.3",
"chai": "^4.2.0",
"config": "^2.0.1",
"cors": "^2.8.5",
"express": "^4.16.3",
"express-async-errors": "^3.0.0",
"jest": "^23.6.0",
"joi": "^13.6.0",
"lodash": "^4.17.11",
"mocha": "^5.2.0",
"pouchdb": "^7.0.0",
"pouchdb-erase": "^1.0.2",
"pouchdb-find": "^7.0.0",
"sinon": "^6.3.4",
"supertest": "^3.3.0"
}
}