-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.01 KB
/
package.json
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
{
"name": "sacsbrainz-api",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"start": "ts-node-dev --respawn --transpile-only --exit-child src/server.ts",
"build": "tsc",
"seed": "ts-node prisma/seed.ts",
"postinstall": "prisma generate",
"studio": "prisma studio"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@paralleldrive/cuid2": "^2.2.1",
"@prisma/client": "4.15.0",
"@t3-oss/env-core": "^0.4.1",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^6.7.0",
"morgan": "^1.10.0",
"multer": "1.4.5-lts.1",
"rembg-node": "^2.0.1",
"sharp": "^0.32.1",
"winston": "^3.9.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/morgan": "^1.9.4",
"@types/multer": "^1.4.7",
"@types/node": "^20.3.1",
"prisma": "^4.15.0",
"ts-node-dev": "^2.0.0",
"typescript": "^5.1.3"
}
}