-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.65 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.65 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
{
"name": "automation-platform",
"version": "1.0.0",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"server:build": "tsc -p tsconfig.server.json",
"server": "ts-node --project tsconfig.server.json server/index.ts",
"start": "concurrently \"npm run dev\" \"npm run server\"",
"test": "vitest",
"test:frontend": "vitest test_case/frontend",
"test:backend": "vitest test_case/backend",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage",
"cleanup:results": "ts-node --project tsconfig.server.json scripts/cleanup-invalid-results.ts"
},
"dependencies": {
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tooltip": "^1.0.7",
"@tanstack/react-query": "^4.36.1",
"@tanstack/react-virtual": "^3.13.18",
"bcryptjs": "^3.0.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"cors": "^2.8.5",
"date-fns": "^4.1.0",
"dotenv": "^17.2.3",
"express": "^4.18.2",
"express-rate-limit": "^8.2.1",
"glob": "^13.0.0",
"jsonwebtoken": "^9.0.3",
"lucide-react": "^0.312.0",
"mind-elixir": "^5.9.3",
"mysql2": "^3.16.1",
"node-fetch": "^3.3.2",
"nodemailer": "^7.0.12",
"qs": "^6.14.1",
"react": "^18.2.0",
"react-day-picker": "^9.14.0",
"react-dom": "^18.2.0",
"react-is": "^19.2.4",
"recharts": "^3.6.0",
"reflect-metadata": "^0.2.2",
"simple-git": "^3.30.0",
"socket.io": "^4.8.3",
"socket.io-client": "^4.8.3",
"sonner": "^1.4.0",
"tailwind-merge": "^2.2.0",
"tailwindcss-animate": "^1.0.7",
"typeorm": "^0.3.28",
"wouter": "^2.12.1"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/bcryptjs": "^2.4.6",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^20.11.5",
"@types/nodemailer": "^7.0.4",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@types/socket.io": "^3.0.1",
"@types/supertest": "^7.2.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.17",
"concurrently": "^8.2.2",
"jsdom": "^27.4.0",
"postcss": "^8.4.33",
"supertest": "^7.2.2",
"tailwindcss": "^3.4.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vitest": "^4.0.17"
}
}