-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.12 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.12 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "servercn",
"private": true,
"packageManager": "npm@10.5.0",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "npm run build -ws",
"dev:app": "npm run dev -w apps/web",
"dev:cli": "npm run dev -w packages/cli",
"lint": "eslint .",
"format:check": "npx prettier . --check",
"format:fix": "npx prettier . --write",
"build:cli": "npm run build -w packages/cli",
"link:cli": "npm link -w packages/cli",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"npx eslint --fix"
],
"*.{json,css}": [
"npx prettier --write"
]
},
"devDependencies": {
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"@eslint/eslintrc": "^3.3.3",
"@types/cookie-parser": "^1.4.10",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/jsonwebtoken": "^9.0.10",
"@types/morgan": "^1.9.10",
"@types/multer": "^2.0.0",
"@types/node": "^25.0.6",
"@types/nodemailer": "^7.0.5",
"@types/passport": "^1.0.17",
"@types/passport-facebook": "^3.0.4",
"@types/passport-github2": "^1.2.9",
"@types/passport-google-oauth20": "^2.0.17",
"@types/source-map-support": "^0.5.10",
"@types/swagger-ui-express": "^4.1.8",
"drizzle-kit": "^0.12.8",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^2.7.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"morgan": "^1.10.1",
"next": "^16.1.6",
"nodemon": "^3.1.11",
"prettier": "3.7.4",
"prisma": "6.19",
"tsx": "^4.21.0",
"typescript": "^5.3.3"
},
"dependencies": {
"@base-ui/react": "^1.3.0",
"@imagekit/nodejs": "^7.2.2",
"@neondatabase/serverless": "^1.0.2",
"@prisma/client": "^6.19.2",
"argon2": "^0.44.0",
"bcryptjs": "^3.0.3",
"cloudinary": "^2.8.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"dotenv-flow": "^4.1.0",
"drizzle-orm": "^0.45.2",
"express": "^5.2.1",
"express-rate-limit": "^8.2.1",
"google-auth-library": "^10.5.0",
"helmet": "^8.1.0",
"jsonwebtoken": "^9.0.3",
"mailtrap": "^3.1.1",
"mongoose": "^9.0.2",
"multer": "^2.0.2",
"mysql2": "^3.16.0",
"node-cron": "^4.2.1",
"nodemailer": "^8.0.4",
"passport": "^0.7.0",
"passport-facebook": "^3.0.0",
"passport-github2": "^0.1.12",
"passport-google-oauth20": "^2.0.0",
"pino": "^10.1.0",
"redis": "^5.11.0",
"resend": "^6.9.1",
"servercn": "^1.0.0",
"source-map-support": "^0.5.21",
"swagger-autogen": "^2.23.7",
"swagger-ui-express": "^5.0.1",
"winston": "^3.19.0",
"winston-daily-rotate-file": "^5.0.0",
"zod": "^4.3.6"
},
"optionalDependencies": {
"@next/swc-darwin-arm64": "16.1.6",
"@next/swc-darwin-x64": "16.1.6",
"@next/swc-linux-arm64-gnu": "16.1.6",
"@next/swc-linux-arm64-musl": "16.1.6",
"@next/swc-linux-x64-gnu": "16.1.6",
"@next/swc-linux-x64-musl": "16.1.6",
"@next/swc-win32-arm64-msvc": "16.1.6",
"@next/swc-win32-x64-msvc": "16.1.6"
}
}