-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.05 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.05 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
{
"name": "starter-adonis-react-api",
"version": "0.1.0",
"author": "Merkur39",
"license": "GPL-3.0",
"private": true,
"type": "module",
"workspaces": ["./api", "./client", "./shared"],
"scripts": {
"dev:client": "cd client && bun run dev",
"dev:api": "cd api && bun run dev",
"dev:shared": "cd shared && bun run dev",
"dev": "concurrently \"bun run dev:shared\" \"bun run dev:api\" \"bun run dev:client\"",
"build:client": "cd client && bun run build",
"build:shared": "cd shared && bun run build",
"build:api": "cd api && bun run build",
"build": "bun run build:shared && bun run build:api && bun run build:client",
"postinstall": "bun run build:shared && bun run build:api",
"merge-tsconfig": "node scripts/merge-tsconfig.js"
},
"keywords": ["bun", "adonisjs", "react", "vite", "monorepo"],
"devDependencies": {
"concurrently": "^9.1.2",
"eslint": "^9.27.0",
"jsonc-parser": "^3.3.1",
"prettier": "^3.5.3",
"typescript": "^5.8.3"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}