-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.55 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.55 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": "lovat-server",
"version": "26.0.0",
"description": "",
"type": "module",
"scripts": {
"dev": "NODE_ENV=development tsx watch src/server.ts",
"build": "tsc",
"start": "node dist/src/server.js --omit=dev",
"test": "tsc",
"lint": "eslint .",
"format": "prettier --write ."
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@asteasolutions/zod-to-openapi": "^8.4.0",
"@prisma/client": "^6.19.0",
"@prisma/extension-accelerate": "^1.0.0",
"@slack/web-api": "^7.10.0",
"axios": "^1.6.2",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"crypto-js": "^4.2.0",
"csv-stringify": "^6.4.6",
"dotenv": "^16.6.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"jose": "^5.1.1",
"luxon": "^3.7.2",
"posthog-node": "^5.9.5",
"redis": "^5.9.0",
"resend": "^2.0.0",
"swagger-ui-express": "^5.0.1",
"ts-node": "^10.9.2",
"zod": "^4.1.12"
},
"devDependencies": {
"@eslint/js": "^9.8.0",
"@types/cookie-parser": "^1.4.10",
"@types/cors": "^2.8.19",
"@types/crypto-js": "^4.2.1",
"@types/express": "^4.17.21",
"@types/luxon": "^3.7.1",
"@types/node": "^20.9.2",
"@types/swagger-ui-express": "^4.1.8",
"eslint": "^10.0.1",
"eslint-plugin-unused-imports": "^4.0.1",
"globals": "^15.8.0",
"prettier": "^3.8.1",
"prisma": "^6.19.0",
"ts-node-dev": "^2.0.0",
"tsx": "^4.21.0",
"typescript": "^5.2.2",
"typescript-eslint": "^8.0.0"
},
"engines": {
"node": "22.20.0"
}
}