-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
164 lines (164 loc) · 6.4 KB
/
package.json
File metadata and controls
164 lines (164 loc) · 6.4 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
{
"name": "server",
"version": "1.2.2",
"description": "This repository contains the server-side implementation for the project. It handles **backend logic**, **database** interactions, and serves **APIs** for the application.",
"main": "app.js",
"type": "module",
"scripts": {
"test": "UNIT_TEST=1 NODE_ENV=test STAGE=test TEST_TYPE=unit jest --detectOpenHandles --forceExit",
"test:watch": "UNIT_TEST=1 NODE_ENV=test STAGE=testTEST_TYPE=unit jest --watch",
"test:coverage": "UNIT_TEST=1 NODE_ENV=test STAGE=test TEST_TYPE=unit jest --coverage",
"test:unit": "UNIT_TEST=1 NODE_ENV=test STAGE=test TEST_TYPE=unit jest",
"test:integration": "NODE_ENV=test STAGE=test jest --config jest.integration.config.js --detectOpenHandles --forceExit --runInBand && npm run cleanup:test-data",
"test:integration:clean": "NODE_ENV=test STAGE=test CLEAN_TEST_DATA=true jest --config jest.integration.config.js --detectOpenHandles --forceExit --runInBand",
"test:e2e": "NODE_ENV=test STAGE=test TEST_TYPE=e2e jest --config jest.e2e.config.js --detectOpenHandles --forceExit --runInBand",
"test:e2e:clean": "NODE_ENV=test STAGE=test TEST_TYPE=e2e CLEAN_TEST_DATA=true jest --config jest.e2e.config.js --detectOpenHandles --forceExit --runInBand",
"test:all": "npm run test:unit && npm run test:integration && npm run test:e2e",
"test:all:clean": "npm run test:unit && npm run test:integration:clean && npm run test:e2e:clean",
"cleanup:test-data": "NODE_ENV=test STAGE=test node ./src/__tests__/scripts/cleanup-test-data.js",
"start": "node ./src/index.js",
"start:dev": "STAGE=development nodemon ./src/index.js",
"dev": "nodemon ./src/index.js",
"start:prod": "STAGE=production nodemon ./src/index.js",
"start:test": "STAGE=test nodemon ./src/index.js",
"format": "npx prettier . --write",
"lint": "npx eslint . --fix --ignore-pattern 'prisma/**' --ignore-pattern 'jest.config.js' --ignore-pattern 'public/**'",
"vercel-build": "prisma generate && prisma migrate deploy && mkdir -p ./dist/src/docs && cp -r ./src/docs/* ./dist/src/docs/ || true",
"client:dev": "vite --config public/vite.config.ts",
"build": "cd public && vite build",
"client:preview": "vite preview --config public/vite.config.ts",
"dev:all": "concurrently \"npm run dev\" \"npm run client:dev\""
},
"keywords": [],
"author": "TaskTrial",
"license": "ISC",
"prisma": {
"schema": "./prisma/schema.prisma"
},
"devDependencies": {
"@babel/core": "^7.27.4",
"@babel/node": "^7.27.1",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/plugin-transform-modules-commonjs": "^7.27.1",
"@babel/preset-env": "^7.27.2",
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"@eslint/js": "^9.16.0",
"@types/jest": "^30.0.0",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.18",
"babel-jest": "^30.0.2",
"concurrently": "^8.2.2",
"eslint": "^9.31.0",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.11",
"globals": "^15.13.0",
"husky": "^8.0.0",
"jest": "^29.7.0",
"lint-staged": "^15.5.0",
"nodemon": "^3.1.9",
"postcss": "^8.4.35",
"prettier": "3.4.2",
"supertest": "^7.1.1",
"tailwindcss": "^3.4.1",
"typescript": "^5.5.3",
"typescript-eslint": "^8.3.0",
"vite": "^7.1.11"
},
"dependencies": {
"@hookform/resolvers": "^3.9.0",
"@prisma/client": "^6.10.0",
"@radix-ui/react-accordion": "^1.2.0",
"@radix-ui/react-alert-dialog": "^1.1.1",
"@radix-ui/react-aspect-ratio": "^1.1.0",
"@radix-ui/react-avatar": "^1.1.0",
"@radix-ui/react-checkbox": "^1.1.1",
"@radix-ui/react-collapsible": "^1.1.0",
"@radix-ui/react-context-menu": "^2.2.1",
"@radix-ui/react-dialog": "^1.1.2",
"@radix-ui/react-dropdown-menu": "^2.1.1",
"@radix-ui/react-hover-card": "^1.1.1",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-menubar": "^1.1.1",
"@radix-ui/react-navigation-menu": "^1.2.0",
"@radix-ui/react-popover": "^1.1.1",
"@radix-ui/react-progress": "^1.1.0",
"@radix-ui/react-radio-group": "^1.2.0",
"@radix-ui/react-scroll-area": "^1.1.0",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slider": "^1.2.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-switch": "^1.1.0",
"@radix-ui/react-tabs": "^1.1.0",
"@radix-ui/react-toast": "^1.2.1",
"@radix-ui/react-toggle": "^1.1.0",
"@radix-ui/react-toggle-group": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.4",
"@socket.io/redis-adapter": "^8.1.0",
"@supabase/supabase-js": "^2.49.1",
"@tanstack/react-query": "^5.56.2",
"axios": "^1.13.5",
"bcryptjs": "^3.0.2",
"body-parser": "^2.2.1",
"class-variance-authority": "^0.7.1",
"cloudinary": "^2.7.0",
"clsx": "^2.1.1",
"cmdk": "^1.0.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"date-fns": "^3.0.0",
"dotenv": "^16.4.7",
"embla-carousel-react": "^8.3.0",
"express": "^4.22.1",
"express-rate-limit": "^7.5.0",
"express-session": "^1.18.2",
"firebase": "^11.6.0",
"firebase-admin": "^13.2.0",
"google-auth-library": "^9.15.1",
"helmet": "^8.1.0",
"input-otp": "^1.2.4",
"joi": "^17.13.3",
"jsonwebtoken": "^9.0.2",
"lodash.merge": "^4.6.2",
"lucide-react": "^0.462.0",
"lusca": "^1.7.0",
"morgan": "^1.10.1",
"multer": "^2.0.2",
"next-themes": "^0.3.0",
"nodemailer": "^7.0.11",
"passport": "^0.7.0",
"passport-google-oauth20": "^2.0.0",
"prisma": "^6.10.0",
"react": "^18.3.1",
"react-day-picker": "^8.10.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.53.0",
"react-resizable-panels": "^2.1.3",
"react-router-dom": "^6.30.3",
"recharts": "^2.12.7",
"redis": "^4.7.1",
"server": "file:",
"socket.io": "^4.6.1",
"socket.io-client": "^4.8.1",
"sonner": "^1.5.0",
"swagger-autogen": "^2.23.7",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"uuid": "^9.0.0",
"vaul": "^0.9.3",
"zod": "^3.23.8"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"npm run lint",
"npm run format",
"jest --bail --findRelatedTests --passWithNoTests"
]
}
}