-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.06 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1.06 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
{
"name": "movie-games",
"version": "1.0.0",
"description": "AI 互动电影游戏生成器",
"repository": {
"url": "https://github.com/SublimeCT/movie-games",
"type": "github"
},
"scripts": {
"dev:frontend": "cd front && pnpm dev",
"dev:backend": "cd server && cargo run",
"build:frontend": "cd front && pnpm build",
"build:backend": "cd server && cargo build --release",
"build": "pnpm build:frontend && pnpm build:backend",
"build:frontend:deploy": "pnpm run build:frontend && rsync -avz ./front/dist/ root@47.96.124.139:/srv/movie-games-dist/dist/",
"upload:backend": "rsync -avz --exclude='target' ./server/ root@47.96.124.139:/home/admin/projects/movie-games-server-static/",
"dev": "concurrently \"pnpm dev:backend\" \"pnpm dev:frontend\"",
"install:frontend": "cd front && pnpm install"
},
"devDependencies": {
"concurrently": "^8.2.2"
},
"keywords": [
"vue",
"rust",
"game",
"interactive",
"movie"
],
"author": "xiaban.run",
"license": "MIT",
"packageManager": "pnpm@10.4.1"
}