-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.05 KB
/
package.json
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
{
"name": "jsa-emerald-backend",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "nodemon app.js",
"dev": "DEBUG=Emerald* nodemon app.js",
"lint": "eslint . --ext .js",
"test": "MODE=TEST jest --coverage --testTimeout=10000"
},
"jest": {
"testEnvironment": "node",
"coveragePathIgnorePatterns": [
"/node_modules/",
"/coverage/"
],
"collectCoverageFrom": [
"**/*.js"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 90,
"lines": 90,
"statements": 90
}
}
},
"dependencies": {
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"debug": "^4.3.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"moment": "^2.24.0",
"mongoose": "^5.8.3",
"nodemailer": "^6.4.2",
"nodemailer-mock": "^1.4.4"
},
"devDependencies": {
"eslint": "^7.21.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.19.1",
"jest": "^26.6.3",
"supertest": "^6.1.3"
}
}