-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 1.07 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
{
"dependencies": {
"@prisma/client": "6.0.0",
"@prisma/extension-accelerate": "1.2.1",
"@types/cors": "2.8.17",
"@types/express": "5.0.0",
"@types/node-cron": "3.0.11",
"body-parser": "1.20.3",
"cors": "2.8.5",
"dotenv": "16.4.5",
"express": "4.21.1",
"ioredis": "5.4.1",
"mongoose": "8.8.0",
"morgan": "1.10.0",
"node-cron": "3.0.3",
"nodemon": "3.1.7",
"pg": "8.13.1",
"pg-promise": "11.10.1",
"redis": "4.7.0",
"tsx": "4.19.2"
},
"name": "streamingplatform",
"version": "1.0.0",
"type": "module",
"main": "server.js",
"scripts": {
"start": "tsx src/server.ts",
"dev": "tsx watch --env-file=.env src/server.ts",
"type-check": "tsc --noEmit",
"test": "tsx test/**/*.test.ts",
"build": "tsc --noEmit && tsx src/server.ts"
},
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/jsonwebtoken": "9.0.7",
"@types/pg": "8.11.10",
"bcryptjs": "^2.4.3",
"jsonwebtoken": "9.0.2",
"prisma": "6.0.0"
}
}