-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 857 Bytes
/
package.json
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
{
"name": "watchword",
"version": "0.1.0",
"private": true,
"description": "Generator based Interactive Fiction based on JSX",
"author": "Cefn Hoile",
"license": "MIT",
"workspaces": [
"packages/core",
"packages/core-react",
"packages/fiction-grammar",
"packages/fiction-ui-react",
"apps/book",
"apps/interview"
],
"types": "dist/index.d.ts",
"devDependencies": {
"npm-run-all": "^4.1.5",
"prettier": "^2.8.4",
"tsx": "^3.12.2",
"typescript": "^4.9.5"
},
"scripts": {
"dev:app": "cd apps/book && npm run dev",
"build": "run-s build:packages build:apps",
"build:packages": "find packages -mindepth 1 -maxdepth 1 | xargs -I {} sh -c \"cd {} && pwd && npm run build\"",
"build:apps": "find apps -mindepth 1 -maxdepth 1 | xargs -I {} sh -c \"cd {} && pwd && npm run build\""
}
}