-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 821 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 821 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": "lab-09-api-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node index.js",
"lint": "eslint **/*.js",
"jsdoc": "jsdoc -c ./docs/config/jsdoc.config.json",
"test": "jest --verbose --coverage",
"test-watch": "jest --watchAll --verbose"
},
"jest": {
"testEnvironment": "node"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"eslint": "^5.16.0",
"express": "^4.16.4",
"jest": "^23.6.0",
"mongodb-memory-server": "^2.9.1",
"mongoose": "^5.4.2",
"mongoose-schema-jsonschema": "^1.2.1",
"morgan": "^1.9.1",
"require-directory": "^2.1.1",
"supertest": "^3.3.0",
"swagger-ui-express": "^4.0.2",
"uuid": "^3.3.2"
}
}