-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.19 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.19 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
{
"name": "ai-story-game",
"version": "1.0.0",
"private": true,
"keywords": [],
"author": "Odin Mühlenbein",
"license": "AGPL-3.0-or-later",
"type": "module",
"workspaces": [
"client",
"server",
"core"
],
"scripts": {
"build": "npm install && npm run build:core && npm run build:server && npm run build:client",
"build:core": "cd core && npm run build",
"build:server": "cd server && npm run build",
"build:client": "cd client && npm run build",
"dev": "npm run build:core && concurrently \"npm run dev:server\" \"npm run dev:client\"",
"dev:client": "cd client && npm run dev",
"dev:server": "cd server && npm run dev",
"install:all": "npm install && npm run install:core && npm run install:server && npm run install:client",
"install:core": "cd core && npm install",
"install:server": "cd server && npm install",
"install:client": "cd client && npm install",
"check:all": "npm run build:core && npm run check:server && npm run check:client",
"check:server": "cd server && npm run check:all",
"check:client": "cd client && npm run check:all"
},
"devDependencies": {
"concurrently": "^8.2.2",
"typescript": "^5.0.0"
}
}