-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
67 lines (67 loc) · 1.66 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
62
63
64
65
66
67
{
"name": "node-onlearn",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"dev": "DEBUG=node-onlearn:* nodemon ./bin/www",
"test": "jest --watchAll=true --runInBand --detectOpenHandles",
"coverage": "jest --coverage --runInBand"
},
"jest": {
"testEnvironment": "node",
"coverageDirectory": "./coverage/",
"collectCoverage": false,
"collectCoverageFrom": [
"*.js",
"configs/*.js",
"api/**/*.js",
"models/**/*.js",
"loaders/*",
"!prettier.config.js"
],
"coverageThreshold": {
"global": {
"branches": 10,
"functions": 45,
"lines": 75,
"statements": 75
}
}
},
"dependencies": {
"connect-flash": "0.1.1",
"cookie-parser": "1.4.5",
"debug": "4.3.1",
"dotenv": "8.2.0",
"express": "4.17.1",
"express-session": "1.17.1",
"express-validator": "6.7.0",
"hbs": "4.1.1",
"http-errors": "1.8.0",
"mongodb-memory-server": "6.9.2",
"mongoose": "5.11.4",
"morgan": "1.10.0"
},
"devDependencies": {
"@shelf/jest-mongodb": "1.2.3",
"eslint": "7.15.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "7.0.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "24.1.3",
"eslint-plugin-prettier": "3.2.0",
"jest": "26.6.3",
"mongodb": "3.6.3",
"prettier": "2.2.1",
"supertest": "6.0.1"
},
"repository": {
"type": "git",
"url": "[email protected]:reMRKableDev/OnLearn.git"
},
"bugs": {
"url": "https://github.com/reMRKableDev/OnLearn/issues"
},
"homepage": "https://github.com/reMRKableDev/OnLearn#readme"
}