-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1000 Bytes
/
package.json
File metadata and controls
51 lines (51 loc) · 1000 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
42
43
44
45
46
47
48
49
50
51
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "mocha",
"start": "node index.js",
"serve": "nodemon dev index.js",
"coverage": "nyc --reporter=text mocha --exit"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.0",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"https": "^1.0.0",
"js-yaml": "^3.14.0",
"jsonwebtoken": "^9.0.0",
"knex": "^0.21.14",
"openapi": "^1.0.0",
"openapi-lint": "0.0.1",
"pg": "^8.5.1",
"swagger-ui-express": "^4.1.5",
"nyc": "^15.1.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"chai-json-schema": "^1.5.1",
"mocha": "^8.2.1",
"nodemon": "^2.0.6"
},
"nyc": {
"exclude": [
"/sentryHelper.*",
"/.test."
],
"extension": [
".js"
],
"reporter": [
"lcov",
"text",
"html"
]
}
}