-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
47 lines (47 loc) · 1.23 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
{
"name": "zerocat",
"private": true,
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js",
"prisma": "prisma generate",
"prisma:pull": "prisma db pull && prisma generate",
"dev": "NODE_ENV=development nodemon server.js"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.782.0",
"@maxmind/geoip2-node": "^4.2.0",
"@prisma/client": "^6.5.0",
"axios": "^1.8.4",
"base32-encode": "^2.0.0",
"body-parser": "^2.2.0",
"compression": "^1.8.0",
"connect-multiparty": "^2.2.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"crypto-js": "^4.1.1",
"dotenv": "^16.4.7",
"ejs": "^3.1.10",
"express": "^5.1.0",
"express-jwt": "^8.5.1",
"express-session": "^1.18.1",
"express-winston": "^4.2.0",
"html-entities": "^2.6.0",
"jsonwebtoken": "^9.0.0",
"morgan": "^1.10.0",
"multer": "1.4.5-lts.1",
"mysql": "^2.18.1",
"nodemailer": "^6.10.0",
"otpauth": "^9.4.0",
"phpass": "^0.1.1",
"tar": "^6.2.1",
"ua-parser-js": "^2.0.3",
"uuid": "^11.1.0",
"winston": "^3.17.0",
"winston-daily-rotate-file": "^5.0.0"
},
"devDependencies": {
"prisma": "^6.5.0"
}
}