forked from Real-Dev-Squad/website-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.32 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "website-backend",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "node ./dist/server.js",
"tsc": "tsc",
"postinstall": "yarn run tsc",
"dev": "cross-env NODE_ENV=development ts-node-dev 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": "yarn lint && yarn test-unit && yarn test-integration",
"tdd:watch": "sh scripts/tests/tdd.sh"
},
"dependencies": {
"axios": "^1.6.7",
"cloudinary": "^2.0.3",
"config": "3.3.7",
"cookie-parser": "~1.4.6",
"cors": "^2.8.5",
"datauri": "^4.1.0",
"debug": "~4.3.4",
"express": "~4.18.3",
"express-boom": "^3.0.0",
"firebase-admin": "^11.11.1",
"helmet": "^7.1.0",
"http-errors": "~2.0.0",
"joi": "^17.12.2",
"jsdoc": "^4.0.2",
"jsonwebtoken": "^8.5.1",
"morgan": "~1.10.0",
"multer": "^1.4.2",
"newrelic": "^11.12.0",
"passport": "^0.7.0",
"passport-github2": "^0.1.12",
"rate-limiter-flexible": "^5.0.0",
"winston": "^3.12.0"
},
"devDependencies": {
"@types/chai": "^4.3.12",
"@types/config": "^3.3.3",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.12",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.24",
"@types/sinon": "^17.0.3",
"@typescript-eslint/parser": "^7.1.1",
"chai": "^4.4.1",
"chai-http": "^4.4.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^10.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-security": "^1.7.1",
"eslint-plugin-standard": "^4.1.0",
"firebase-tools": "^13.4.0",
"mocha": "^10.3.0",
"nock": "~13.2.9",
"nodemon": "^3.1.0",
"nyc": "^15.1.0",
"pre-commit": "^1.2.2",
"prettier": "^2.5.1",
"sinon": "^17.0.1",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "~5.3.3"
},
"engines": {
"node": "20.x"
},
"pre-commit": [
"lint"
],
"volta": {
"node": "20.11.1",
"yarn": "1.22.21"
}
}