-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.65 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.65 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
{
"name": "sync_it",
"version": "1.0.0",
"main": "index.js",
"type": "commonjs",
"scripts": {
"build": "esbuild src/backend/server.ts --bundle --outdir=dist/backend --platform=node",
"start": "concurrently \"npm run build:watch\" \"npm run serve\"",
"build:watch": "tsc-watch --onSuccess \"npm run build\"",
"serve": "nodemon dist/backend/server.js",
"generate:openapi": "ts-node scripts/generateDocs.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"it": "npm run build && npm run serve"
},
"prisma": {
"seed": "ts-node prisma/seed.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@prisma/internals": "^7.2.0",
"@types/express": "^4.17.21",
"@types/jest": "^30.0.0",
"@types/node": "^24.1.0",
"@types/node-cron": "^3.0.11",
"@types/pg": "^8.16.0",
"concurrently": "^8.2.2",
"esbuild": "^0.25.0",
"nodemon": "^3.1.4",
"prisma": "^7.2.0",
"ts-jest": "^29.4.0",
"ts-node-dev": "^2.0.0",
"tsc-watch": "^6.2.0",
"typescript": "^5.5.4"
},
"dependencies": {
"@prisma/adapter-pg": "^7.2.0",
"@prisma/client": "^7.2.0",
"axios": "^1.7.4",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"express-session": "^1.18.0",
"firebase-admin": "^13.3.0",
"ioredis": "^5.5.0",
"iso8601-duration": "^2.1.2",
"jest": "^30.0.5",
"node-cron": "^4.2.1",
"openai": "^4.56.0",
"pg": "^8.16.3",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"sync_it": "file:",
"uuid": "^11.0.5",
"zod": "^3.23.8"
}
}