-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.75 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.75 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
{
"name": "server",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"build": "tsc && npm run sentry:sourcemaps",
"dev": "nodemon -w src src/index.ts",
"start": "tsc && node dist/index.js",
"lint": "tsc --noEmit && eslint .",
"lint:fix": "eslint --fix .",
"setup": "npm install --include=dev",
"dbsetup": "ts-node scripts/setup/index.ts",
"sentry:sourcemaps": "sentry-cli sourcemaps inject --org hackyourfuture-nl --project dojo-backend ./dist && sentry-cli sourcemaps upload --org hackyourfuture-nl --project dojo-backend ./dist"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@eslint/js": "^9.32.0",
"@faker-js/faker": "^10.2.0",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.2",
"@types/jsonwebtoken": "^9.0.6",
"@types/multer": "^2.0.0",
"@types/node": "^25.2.0",
"@types/swagger-ui-express": "^4.1.6",
"csv-parse": "^6.1.0",
"eslint": "^9.32.0",
"nodemon": "^3.0.3",
"ts-node-dev": "^2.0.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.38.0"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.981.0",
"@aws-sdk/lib-storage": "^3.981.0",
"@sentry/cli": "^3.1.0",
"@sentry/node": "^10.38.0",
"@slack/bolt": "^4.4.0",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"docxtemplater": "^3.65.2",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^9.1.5",
"multer": "^2.0.0",
"pizzip": "^3.2.0",
"remove-accents": "^0.5.0",
"sharp": "^0.34.1",
"swagger-ui-express": "^5.0.0",
"yaml": "^2.3.4",
"zod": "^4.0.10"
}
}