-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 966 Bytes
/
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
{
"dependencies": {
"@prisma/client": "^5.18.0",
"axios": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.19.2",
"fastify": "^4.28.1",
"fastify-cors": "^6.1.0",
"fastify-multer": "^2.0.3",
"fastify-multipart": "^5.4.0",
"multer": "^1.4.5-lts.1",
"sharp": "^0.33.5"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/fastify-cors": "^2.1.0",
"@types/fastify-multipart": "^0.7.0",
"@types/node": "^22.5.0",
"nodemon": "^3.1.4",
"prisma": "^5.18.0",
"typescript": "^5.5.4"
},
"name": "cdn.multer",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"dev:reload": "npx ts-node-dev src/index.ts",
"dev": "npx ts-node src/index.ts",
"build": "npx tsc -p tsconfig.json",
"start": "npx nodemon server.js",
"db": "npx prisma db push",
"db:reset": "npx prisma db push --force-reset"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": ""
}