-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.4 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
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "backend",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"lint": "eslint . --ext .js",
"test": "mocha --recursive --timeout 60000 --ignore 'node_modules/**' '**/*.spec.js'",
"test:ci": "yarn test:cover --config mocharc.ci.js",
"test:cover": "nyc yarn test",
"start:dev": "nodemon src",
"start": "NODE_ENV=production node src"
},
"nyc": {
"reporter": [
"lcov",
"text"
],
"include": [
"src/**/*.js"
],
"exclude": [
"src/db.js",
"src/index.js",
"**/*.spec.js"
],
"temp-dir": "./output/nyc-output",
"report-dir": "./output/test-coverage",
"all": true,
"check-coverage": true,
"per-file": true,
"branches": 75,
"lines": 75,
"functions": 75,
"statements": 75
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.16.4",
"mongoose": "^5.9.5",
"morgan": "^1.10.0",
"winston": "^3.2.1"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-restricted-globals": "^0.2.0",
"mocha": "^7.1.0",
"mocha-junit-reporter": "^1.23.3",
"mongodb-memory-server-core": "^6.3.3",
"nodemon": "^2.0.2",
"nyc": "^15.0.0",
"sinon": "^9.0.1",
"supertest": "^4.0.2"
}
}