-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.44 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.44 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
{
"name": "assignment",
"version": "1.0.0",
"description": "nodejs assignment",
"main": "index.js",
"scripts": {
"start": "nodemon --exec ts-node src/index.ts",
"dev": "nodemon src/index.ts",
"copy-files": "cp -R src/views build/src && cp -R public build",
"build": "tsc -p . && npm run copy-files",
"pull": "git pull && npm run db:migration",
"deploy": "npm run pull && docker compose up -d --build --force-recreate",
"db:migration": "npx prisma migrate dev && npx prisma generate",
"db:seed": "npx ts-node src/seeders/seed.ts",
"lint": "eslint --fix && prettier --write ."
},
"author": "Babacar Ndiaye",
"license": "ISC",
"dependencies": {
"@prisma/client": "^6.3.1",
"bcrypt": "^5.1.1",
"bcryptjs": "^3.0.1",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"http-errors": "^2.0.0",
"json2csv": "^6.0.0-alpha.2",
"jsonwebtoken": "^9.0.2",
"mysql2": "^3.12.0",
"nodemailer": "^6.10.0",
"socket.io": "^4.8.1",
"xlsx": "^0.18.5",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/json2csv": "^5.0.7",
"@types/jsonwebtoken": "^9.0.8",
"@types/node": "^22.13.4",
"@types/nodemailer": "^6.4.17",
"@types/socket.io": "^3.0.2",
"nodemon": "^3.1.9",
"prisma": "^6.3.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
}
}