-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.21 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.21 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
{
"name": "api",
"version": "1.0.0",
"description": "",
"main": "app.js",
"keywords": [],
"author": "Chicago ARTCC",
"contributors": [
"Alexandra Robison",
"Daan Janssen",
"Timothy Barker",
"Ryan Savara"
],
"scripts": {
"lint": "eslint . --fix",
"format": "prettier --write .",
"start:ryan": "doppler run -p api -c dev_ryan -- nodemon --exec \"npx tsx --import ./src/instrument.ts src/app.ts\"",
"build": "tsc && cp -R src/email dist/email",
"test:renovate": "npx --yes --package renovate -- renovate-config-validator"
},
"license": "CC-BY-NC-SA-4.0",
"type": "module",
"repository": {
"type": "git",
"url": "https://gitlab.com/vzauartcc/api"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.899.0",
"@aws-sdk/lib-storage": "^3.928.0",
"@sentry/node": "^10.17.0",
"@sentry/tracing": "^7.120.4",
"axios": "^1.12.2",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"croner": "^9.1.0",
"express": "^5.1.0",
"express-validator": "^7.2.1",
"file-type": "^21.0.0",
"helmet": "^8.1.0",
"ioredis": "^5.8.0",
"isomorphic-dompurify": "^2.32.0",
"jsonwebtoken": "^9.0.2",
"luxon": "^3.7.2",
"mongoose": "^8.18.3",
"mongoose-delete": "^1.0.2",
"mongoose-lean-virtuals": "^0.9.1",
"mongoose-select-virtuals": "^3.0.3",
"multer": "^2.0.2",
"multer-s3": "^3.0.1",
"nodemailer": "^7.0.6",
"nodemailer-express-handlebars": "^7.0.0",
"string-similarity-js": "^2.1.4",
"tar-stream": "^3.1.7",
"ts-cache-mongoose": "^1.7.6"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.36.0",
"@types/cookie-parser": "^1.4.9",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/jsonwebtoken": "^9.0.10",
"@types/luxon": "^3.7.1",
"@types/mongoose-delete": "^1.0.6",
"@types/multer": "^2.0.0",
"@types/node": "^24.6.2",
"@types/nodemailer": "^7.0.2",
"@types/nodemailer-express-handlebars": "^4.0.5",
"@types/tar-stream": "^3.1.4",
"@typescript-eslint/eslint-plugin": "^8.45.0",
"@typescript-eslint/parser": "^8.45.0",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.4.0",
"nodemon": "^3.1.10",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}