-
Notifications
You must be signed in to change notification settings - Fork 276
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.67 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 2.67 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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "website-backend",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "node ./dist/server.js",
"build": "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": "pnpm lint && pnpm test-unit && pnpm test-integration",
"tdd:watch": "sh scripts/tests/tdd.sh",
"prepare": "husky"
},
"dependencies": {
"@aws-sdk/client-identitystore": "3.1131.0",
"axios": "1.20.0",
"cloudinary": "2.11.0",
"config": "5.0.1",
"cookie-parser": "1.4.7",
"cors": "2.8.6",
"datauri": "4.1.0",
"debug": "4.4.3",
"express": "5.2.1",
"express-boom": "3.0.0",
"firebase-admin": "14.4.0",
"helmet": "8.3.0",
"http-errors": "~2.0.1",
"joi": "18.2.8",
"jsdoc": "4.0.5",
"jsonwebtoken": "^8.5.1",
"lodash": "4.18.1",
"morgan": "1.12.0",
"multer": "2.3.0",
"newrelic": "14.4.0",
"nodemailer": "^10.0.1",
"nodemailer-mock": "^2.0.14",
"passport": "0.7.0",
"passport-github2": "0.1.12",
"passport-google-oauth20": "^2.0.0",
"rate-limiter-flexible": "11.2.0",
"winston": "3.19.0"
},
"devDependencies": {
"@eslint/eslintrc": "3.3.7",
"@types/chai": "5.2.3",
"@types/config": "3.3.5",
"@types/express": "5.0.6",
"@types/jest": "30.0.0",
"@types/mocha": "10.0.10",
"@types/node": "26.5.0",
"@types/nodemailer": "^8.0.1",
"@types/sinon": "22.0.0",
"@typescript-eslint/parser": "^8.70.0",
"chai": "6.2.2",
"chai-http": "5.1.2",
"cross-env": "10.1.0",
"eslint": "10.10.0",
"eslint-config-prettier": "10.1.8",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-mocha": "12.0.2",
"eslint-plugin-n": "16.6.2",
"eslint-plugin-prettier": "5.5.6",
"eslint-plugin-promise": "7.3.0",
"eslint-plugin-security": "4.0.1",
"firebase-tools": "15.30.0",
"globals": "17.12.0",
"husky": "^9.1.7",
"mocha": "12.0.0",
"nock": "14.0.17",
"nodemon": "3.1.14",
"nyc": "18.0.0",
"prettier": "3.9.6",
"sinon": "22.1.0",
"ts-node": "10.9.2",
"ts-node-dev": "2.0.0",
"typescript": "5.9.3"
},
"engines": {
"node": "26.8.1",
"pnpm": ">=12 <13"
},
"devEngines": {
"runtime": {
"name": "node",
"version": "26.8.1",
"onFail": "download"
},
"packageManager": {
"name": "pnpm",
"version": "12.4.0",
"onFail": "download"
}
},
"packageManager": "pnpm@12.4.0"
}