-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 867 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 867 Bytes
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
{
"name": "pixelit-backend",
"version": "1.0.0",
"description": "Backend API for Pixelit pixel art platform",
"main": "server.js",
"dependencies": {
"@aws-sdk/client-s3": "^3.700.0",
"@prisma/adapter-pg": "^7.2.0",
"@prisma/client": "^7.2.0",
"bcryptjs": "^3.0.3",
"cors": "^2.8.5",
"dotenv": "^16.6.1",
"express": "^4.21.2",
"express-rate-limit": "^7.5.0",
"jsonwebtoken": "^9.0.2",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^7.0.12",
"pg": "^8.17.1",
"redis": "^4.7.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/node": "^25.0.8",
"nodemon": "^3.1.9",
"prisma": "^7.2.0"
},
"prisma": {
"seed": "node prisma/seed.js"
},
"scripts": {
"start": "node server.js",
"start:dev": "nodemon server.js",
"seed": "node prisma/seed.js"
}
}