-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.01 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
{
"name": "regulus",
"version": "0.1.0",
"private": true,
"scripts": {
"dev:server": "tsx watch server/index.ts",
"dev:web": "vite",
"build": "npm run build:web && npm run build:server",
"build:web": "vite build",
"build:server": "tsc -p tsconfig.server.json",
"start": "node dist-server/index.js",
"typecheck": "tsc -p tsconfig.server.json --noEmit && tsc --noEmit",
"test": "vitest run"
},
"dependencies": {
"express": "^5.1.0"
},
"devDependencies": {
"@dnd-kit/core": "6.3.1",
"@dnd-kit/modifiers": "9.0.0",
"@dnd-kit/sortable": "10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@types/express": "^5.0.0",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.3.4",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-window": "2.2.7",
"react-window-infinite-loader": "2.0.1",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vite": "^6.0.0",
"vitest": "^2.1.0"
}
}