-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 3.12 KB
/
package.json
File metadata and controls
91 lines (91 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
{
"name": "calendar",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "npx vite",
"build": "tsc --project tsconfig.build.json && npx vite build",
"lint": "eslint .",
"preview": "vite preview",
"server": "nodemon ./server/server.js",
"server:start": "node ./server/server.js",
"server:init-db": "node ./server/scripts/initDb.js",
"dev:full": "concurrently \"npm run server\" \"npm run dev\"",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"typecheck": "tsc --noEmit",
"start": "npm run server:start",
"postbuild": "echo 'Frontend build completed'",
"deploy:frontend": "npm run build",
"deploy:backend": "cd server && npm install && npm start",
"check-deployment": "node check-deployment.js",
"build:full": "npm install && npm run build:with-env && cd server && npm install",
"build:simple": "npx vite build",
"build:vite-only": "npx vite build --mode production",
"build:prod": "npx vite build --config vite.config.prod.ts",
"build:fallback": "npm install && ./node_modules/.bin/vite build && cd server && npm install",
"build:ultra-simple": "npx vite build --mode production --outDir dist",
"build:with-env": "cross-env VITE_API_URL=/api VITE_NODE_ENV=production VITE_SYNC_ENABLED=true npx vite build --mode production --outDir dist",
"heroku-postbuild": "npm run build:full",
"test:fullstack": "node test-fullstack.js"
},
"dependencies": {
"@hello-pangea/dnd": "^18.0.1",
"bcryptjs": "^2.4.3",
"classnames": "^2.5.1",
"compression": "^1.7.4",
"cors": "^2.8.5",
"date-fns": "^4.1.0",
"dotenv": "^17.0.0",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"firebase": "^11.10.0",
"formik": "^2.4.6",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.0.0",
"morgan": "^1.10.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-router-dom": "^7.6.3",
"uuid": "^11.1.0",
"validator": "^13.11.0",
"yup": "^1.6.1",
"zustand": "^5.0.6",
"vite": "^7.0.0",
"@vitejs/plugin-react": "^4.5.2",
"vite-plugin-svgr": "^4.3.0",
"cross-env": "^7.0.3"
},
"devDependencies": {
"@babel/eslint-parser": "^7.27.5",
"@eslint/js": "^9.29.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"@types/node": "^22.10.2",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@types/uuid": "^10.0.0",
"@vitest/coverage-v8": "^2.1.8",
"@vitest/ui": "^2.1.8",
"concurrently": "^8.2.2",
"eslint": "^9.30.0",
"eslint-plugin-jest-dom": "^5.5.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"eslint-plugin-testing-library": "^7.5.3",
"globals": "^16.2.0",
"jsdom": "^25.0.1",
"nodemon": "^3.0.1",
"sass": "^1.89.2",
"typescript": "^5.7.2",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-eslint": "^1.8.1",
"vitest": "^2.1.8"
}
}