-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 941 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 941 Bytes
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
{
"name": "local-eth-accounting",
"version": "0.0.1",
"license": "MIT",
"scripts": {
"dev:client": "cd client && bun run dev",
"dev:server": "cd server && bun run dev",
"dev": "concurrently \"bun run dev:server\" \"bun run dev:client\"",
"build:client": "cd client && bun run build",
"build:server": "cd server && bun run build",
"build": "bun run build:client && bun run build:server",
"start:client": "cd client && bun run start",
"start:server": "cd server && bun run start",
"start": "concurrently \"bun run start:server\" \"bun run start:client\"",
"postinstall": "bun run build:server"
},
"workspaces": [
"./server",
"./client"
],
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"bun-types": "latest",
"concurrently": "^9.1.2",
"prettier-plugin-tailwindcss": "^0.6.11"
},
"peerDependencies": {
"typescript": "^5.8.3"
}
}