-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 890 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 890 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
{
"name": "chatmu",
"version": "0.1.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "npm run dev --workspace=apps/server & npm run dev --workspace=apps/web",
"dev:web": "npm run dev --workspace=apps/web",
"dev:server": "npm run dev --workspace=apps/server",
"build": "npm run build --workspaces --if-present",
"build:web": "npm run build --workspace=apps/web",
"build:server": "npm run build --workspace=apps/server",
"start:web": "npm run start --workspace=apps/web",
"start:server": "npm run start --workspace=apps/server",
"lint": "npm run lint --workspaces --if-present",
"clean": "rm -rf node_modules apps/*/node_modules packages/*/node_modules apps/*/.next apps/*/dist packages/*/dist"
},
"devDependencies": {
"@types/node": "^20",
"eslint": "^8",
"typescript": "^5"
}
}