-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.18 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
{
"name": "react-example",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "tsx server.ts",
"build": "vite build && esbuild server.ts --bundle --platform=node --format=cjs --packages=external --sourcemap --outfile=dist/server.cjs",
"start": "node dist/server.cjs",
"preview": "vite preview",
"clean": "rm -rf dist server.js",
"lint": "tsc --noEmit"
},
"dependencies": {
"cors": "^2.8.6",
"dompurify": "^3.4.11",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"express-rate-limit": "^8.5.2",
"helmet": "^8.2.0"
},
"devDependencies": {
"@tailwindcss/vite": "^4.3.0",
"@types/cors": "^2.8.19",
"@types/dompurify": "^3.0.5",
"@types/express": "^5.0.6",
"@types/node": "^25.9.1",
"@types/react": "^19.2.16",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.2",
"esbuild": "^0.28.0",
"lucide-react": "^1.17.0",
"motion": "^12.40.0",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"tailwindcss": "^4.3.0",
"tsx": "^4.22.4",
"typescript": "~7.0.0",
"vite": "^8.0.16"
},
"allowScripts": {
"protobufjs@7.6.2": true,
"esbuild@0.28.1": true
}
}