-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.83 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.83 KB
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
{
"name": "bwa2019",
"version": "1.0.0",
"description": "",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"eslint:report": "eslint -f json -o eslint_reports/report.json --ignore-pattern frontend/ --ignore-pattern test/ --ignore-pattern coverage/ .",
"coverage": "NODE_ENV=test nyc --reporter=lcov --reporter=html mocha --recursive --timeout 20000 --exit",
"start": "node index.js",
"nodemon": "nodemon index.js",
"test": "NODE_ENV=test mocha --recursive --reporter mochawesome --timeout 20000 --inline-diffs --exit"
},
"author": "",
"license": "ISC",
"dependencies": {
"@hapi/joi": "^15.1.1",
"bcryptjs": "^2.4.3",
"config": "^3.2.4",
"connect-flash": "^0.1.1",
"csurf": "^1.10.0",
"debug": "^4.1.1",
"dom-parser": "^0.1.6",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"express-handlebars": "^3.1.0",
"express-sanitizer": "^1.0.5",
"express-session": "^1.17.0",
"handlebars-helpers": "^0.10.0",
"helmet": "^3.21.2",
"http-errors": "^1.7.3",
"jquery": "^3.4.1",
"jsdom": "^15.2.1",
"mongoose": "^5.7.12",
"morgan": "^1.9.1",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"phaser": "^3.21.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint": "^6.6.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-sonarjs": "^0.4.0",
"jsdoc": "^3.6.3",
"mocha": "^6.2.2",
"mochawesome": "^4.1.0",
"mochawesome-report-generator": "^4.0.1",
"nodemon": "^1.19.4",
"nyc": "^14.1.1",
"supertest": "^4.0.2",
"zombie": "^6.1.4"
}
}