forked from RealDevSquad/website-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.63 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.63 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
57
58
59
{
"name": "website-backend",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "node server.js",
"dev": "cross-env NODE_ENV=development nodemon server.js",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"validate-setup": "node scripts/validateSetup.js",
"test-integration": "sh scripts/tests/testIntegration.sh",
"test-unit": "sh scripts/tests/testUnit.sh",
"test": "npm run lint && npm run test-integration && npm run test-unit",
"generate-api-schema": "node utils/generateAPISchema.js"
},
"dependencies": {
"axios": "^0.21.1",
"config": "^3.3.6",
"cookie-parser": "~1.4.5",
"cors": "^2.8.5",
"debug": "~4.3.1",
"express": "~4.17.1",
"express-boom": "^3.0.0",
"firebase-admin": "^9.6.0",
"helmet": "^4.4.1",
"http-errors": "~1.8.0",
"joi": "^17.4.0",
"jsdoc": "^3.6.6",
"jsonwebtoken": "^8.5.1",
"morgan": "~1.10.0",
"passport": "^0.4.1",
"passport-github2": "^0.1.12",
"swagger-jsdoc": "^6.1.0",
"swagger-ui-express": "^4.1.6",
"winston": "^3.3.3"
},
"devDependencies": {
"chai": "^4.3.4",
"chai-http": "^4.3.0",
"cross-env": "^7.0.3",
"eslint": "^7.24.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^8.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-security": "^1.4.0",
"eslint-plugin-standard": "^4.1.0",
"mocha": "^8.3.2",
"nock": "^13.0.11",
"nodemon": "^2.0.7",
"nyc": "^15.1.0",
"pre-commit": "^1.2.2",
"sinon": "^10.0.0"
},
"pre-commit": [
"lint"
]
}