This repository has been archived by the owner on Jan 1, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.62 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
{
"name": "calendar",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"server": "nodemon --exec tsx server/index.ts",
"preview": "vite preview"
},
"dependencies": {
"@types/http-proxy-middleware": "^1.0.0",
"bcrypt": "^5.1.1",
"connect-mongodb-session": "^5.0.0",
"cookie-parser": "^1.4.6",
"cookie-session": "^2.1.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"esm": "^3.2.25",
"express": "^4.19.2",
"express-http-proxy": "^2.0.0",
"express-session": "^1.18.0",
"http-proxy": "^1.18.1",
"http-proxy-middleware": "^3.0.0",
"mongodb": "^6.8.0",
"nodemon": "^3.1.4",
"passport": "^0.7.0",
"passport-google": "^0.3.0",
"passport-google-oauth20": "^2.0.0",
"path": "^0.12.7",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-helmet-async": "^2.0.5",
"react-router-dom": "^6.23.1",
"sass": "^1.77.6",
"tsx": "^4.16.0",
"url": "^0.11.3",
"vite-plugin-pwa": "^0.20.0"
},
"devDependencies": {
"@types/node": "^20.14.8",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"@vitejs/plugin-react-swc": "^3.5.0",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"ts-node": "^10.9.2",
"tslib": "^2.6.3",
"typescript": "^5.2.2",
"vite": "^5.3.1"
},
"module": "commonjs"
}