-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.36 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
42
43
44
45
46
47
48
49
{
"name": "SOBOK-Server",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/jobofbrothers-sobok/SOBOK-Server.git",
"author": "biiit4894 <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "nodemon",
"build": "tsc && node dist",
"db:pull": "npx prisma db pull",
"db:push": "npx prisma db push",
"generate": "npx prisma generate"
},
"dependencies": {
"@prisma/client": "^4.14.0",
"@types/cookie-parser": "^1.4.3",
"@types/dotenv": "^8.2.0",
"@types/node-ssh": "^7.0.1",
"@types/nodemailer": "^6.4.8",
"axios": "^1.4.0",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-session": "^1.17.3",
"express-validator": "^7.0.1",
"jsonwebtoken": "^9.0.0",
"multer": "^1.4.5-lts.1",
"node-ssh": "^13.1.0",
"nodemailer": "^6.9.3",
"prisma": "^4.14.0",
"session-file-store": "^1.5.0",
"typescript": "^5.1.6"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.7",
"@types/express-validator": "^3.0.0",
"@types/jsonwebtoken": "^9.0.2",
"@types/multer": "^1.4.7",
"@types/node": "^20.1.1",
"@types/session-file-store": "^1.2.2",
"nodemon": "^2.0.22"
}
}