-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.32 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.32 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
{
"name": "bytecut-director",
"version": "1.0.0",
"author": "heheok (https://github.com/heheok)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/heheok/bytecut-director"
},
"private": true,
"type": "module",
"scripts": {
"dev": "concurrently \"vite\" \"tsx watch server/index.ts\"",
"dev:client": "vite",
"dev:server": "tsx watch server/index.ts",
"build": "tsc -b && vite build",
"preview": "vite preview"
},
"optionalDependencies": {
"@rollup/rollup-win32-x64-msvc": "^4.57.1"
},
"dependencies": {
"archiver": "^7.0.1",
"cors": "^2.8.5",
"express": "^4.21.0",
"marked": "^15.0.0",
"multer": "^1.4.5-lts.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sharp": "^0.34.5",
"uuid": "^10.0.0",
"zustand": "^5.0.0"
},
"devDependencies": {
"@types/archiver": "^6.0.2",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/multer": "^1.4.12",
"@types/node": "^22.0.0",
"@types/react": "^18.3.0",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^10.0.0",
"@vitejs/plugin-react": "^4.3.0",
"autoprefixer": "^10.4.20",
"concurrently": "^9.0.0",
"postcss": "^8.4.47",
"tailwindcss": "^3.4.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"vite": "^6.0.0"
}
}