-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 4.09 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 4.09 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
{
"name": "rest-express",
"version": "1.0.0",
"type": "module",
"license": "MIT",
"scripts": {
"dev": "DISABLE_RATE_LIMIT=true tsx server/index.ts --host",
"dev:full": "concurrently -n \"BACKEND,CLIENT\" -c \"bgBlue,bgMagenta\" \"npm run dev\" \"npm run dev:client\"",
"dev:client": "vite",
"preview": "vite preview",
"build": "npm run build:client && npm run build:server && npm run build:copy-public",
"build:client": "vite build client/ --config vite.config.ts",
"build:server": "esbuild server/index.ts --platform=node --bundle --format=esm --packages=external --outfile=dist/index.js --banner:js=\"import { createRequire } from 'module'; const require = createRequire(import.meta.url);\" --alias:@shared=./shared",
"build:copy-public": "[ -d public ] && cp -r public dist/ || true",
"start": "NODE_ENV=production node dist/index.js",
"check": "tsc",
"check:raw-hex": "node scripts/check-raw-hex.cjs",
"lint:colors": "npm run check:raw-hex",
"test": "LOG_LEVEL=warn vitest run",
"test:unit": "LOG_LEVEL=warn vitest run",
"test:watch": "LOG_LEVEL=info vitest",
"test:coverage": "LOG_LEVEL=warn vitest run --coverage",
"test:debug": "LOG_LEVEL=debug vitest run",
"test:ci": "LOG_LEVEL=warn vitest run",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"test:e2e:update": "npx playwright test --update-snapshots",
"test:load:50": "NODE_ENV=production LOG_LEVEL=info vitest run tests/server/load-suite.test.ts --testNamePattern='Load Test: 50 Concurrent Clients'",
"test:load:200": "NODE_ENV=production LOG_LEVEL=info vitest run tests/server/load-suite.test.ts --testNamePattern='Load Test: 200 Concurrent Clients'",
"lint": "echo \"no eslint config, skipping\"",
"prepare": "husky"
},
"dependencies": {
"@radix-ui/react-alert-dialog": "^1.1.7",
"@radix-ui/react-checkbox": "^1.1.5",
"@radix-ui/react-dialog": "^1.1.7",
"@radix-ui/react-dropdown-menu": "^2.1.7",
"@radix-ui/react-scroll-area": "^1.2.4",
"@radix-ui/react-select": "^2.1.7",
"@radix-ui/react-separator": "^1.1.3",
"@radix-ui/react-slot": "^1.2.0",
"@radix-ui/react-tabs": "^1.1.4",
"@radix-ui/react-toast": "^1.2.7",
"@radix-ui/react-toggle": "^1.1.3",
"@radix-ui/react-tooltip": "^1.2.8",
"@tanstack/react-query": "^5.60.5",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"express": "^4.21.2",
"express-rate-limit": "^8.2.1",
"helmet": "^8.1.0",
"lucide-react": "^0.453.0",
"monaco-editor": "^0.53.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-resizable-panels": "^2.1.7",
"recharts": "^2.15.2",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"wouter": "^3.3.5",
"ws": "^8.18.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@commitlint/cli": "^20.4.1",
"@commitlint/config-conventional": "^20.4.1",
"@playwright/test": "^1.57.0",
"@tailwindcss/typography": "^0.5.15",
"@tailwindcss/vite": "^4.1.3",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/express": "4.17.21",
"@types/node": "20.16.11",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.1",
"@types/ws": "^8.5.13",
"@typescript-eslint/eslint-plugin": "^8.56.0",
"@typescript-eslint/parser": "^8.56.0",
"@vitejs/plugin-react": "^4.3.2",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"autoprefixer": "^10.4.20",
"baseline-browser-mapping": "^2.9.19",
"concurrently": "^9.2.1",
"esbuild": "^0.25.0",
"eslint": "^10.0.1",
"husky": "^9.1.7",
"jsdom": "^27.0.0",
"lint-staged": "^16.2.7",
"pixelmatch": "^7.1.0",
"pngjs": "^7.0.0",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.17",
"tsx": "^4.20.5",
"typescript": "5.6.3",
"vite": "^5.4.19",
"vite-tsconfig-paths": "^6.0.5",
"vitest": "^4.0.18"
},
"optionalDependencies": {
"bufferutil": "^4.0.8"
},
"lint-staged": {
"*.{ts,tsx}": []
}
}