-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.05 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
{
"name": "asxs-relay-clone",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "concurrently \"npm run dev:server\" \"npm run dev:web\"",
"dev:server": "tsx watch server/index.ts",
"dev:web": "vite",
"build": "vite build",
"start": "NODE_ENV=production tsx server/index.ts",
"preview": "npm run build && NODE_ENV=production tsx server/index.ts"
},
"dependencies": {
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"express": "^5.1.0",
"lucide-react": "^1.7.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.9.4",
"remark-gfm": "^4.0.1",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.9",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/node": "^24.6.1",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@vitejs/plugin-react": "^5.0.4",
"concurrently": "^9.2.1",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vite": "^7.1.9"
}
}