-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 800 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 800 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
{
"name": "content-killer",
"private": true,
"version": "1.0.0",
"workspaces": [
"client",
"server",
"shared"
],
"scripts": {
"dev": "concurrently \"bun:dev:*\"",
"dev:client": "cd client && bun run dev",
"dev:server": "cd server && bun run dev",
"build": "bun run build:shared && bun run build:client && bun run build:server",
"build:client": "cd client && bun run build",
"build:server": "cd server && bun run build",
"build:shared": "cd shared && bun run build",
"lint": "eslint .",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\""
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.21.0",
"@typescript-eslint/parser": "^8.21.0",
"concurrently": "^9.1.2",
"eslint": "^9.18.0",
"prettier": "^3.4.2",
"typescript": "^5.7.3"
}
}