-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.21 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
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
{
"name": "auth",
"version": "1.0.0",
"description": "authentication server",
"type": "module",
"scripts": {
"clean": "if exist dist rmdir /s /q dist",
"lint:src": "pnpm eslint",
"dev": "cross-env NODE_ENV=development nodemon src/server.ts",
"build": "npm run build:client-view && npm run build:server-view && npm run build:server",
"build:client-view": "vite build --outDir dist/ssr",
"build:server-view": "node script/build-server-view.js",
"preview": "cross-env NODE_ENV=production node dist/src/server.js",
"build:server": "tsc --project tsconfig.server.json"
},
"keywords": [
"jwt",
"authentication",
"login",
"express",
"mongodb",
"SSR",
"React",
"vite",
"typescript",
"zod"
],
"author": "shubham oulkar",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.1.1",
"compression": "^1.7.5",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-rate-limit": "^7.5.0",
"google-auth-library": "^9.15.0",
"helmet": "^8.0.0",
"jose": "^5.9.6",
"jsonwebtoken": "^9.0.2",
"mongodb": "^6.12.0",
"morgan": "^1.10.0",
"nodemailer": "^6.9.16",
"react": "^19.0.0",
"react-content-loader": "^7.0.2",
"react-dom": "^19.0.0",
"react-icons": "^5.4.0",
"react-loading-skeleton": "^3.5.0",
"react-router": "^7.1.3",
"sirv": "^3.0.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@types/bcrypt": "^5.0.2",
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "^9.0.8",
"@types/morgan": "^1.9.9",
"@types/node": "^22.13.0",
"@types/nodemailer": "^6.4.17",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@vitejs/plugin-react": "^4.3.4",
"eslint": "^9.19.0",
"nodemon": "^3.1.9",
"tsx": "^4.19.2",
"typescript": "~5.7.3",
"typescript-eslint": "^8.23.0",
"vite": "^6.0.11",
"vite-plugin-svgr": "^4.3.0"
},
"npm": {
"onlyBuiltDependencies": [
"bcrypt",
"@swc/core",
"esbuild",
"protobufjs"
]
},
"overrides": {
"rollup": "npm:@rollup/wasm-node"
}
}