-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 741 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) · 741 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
{
"name": "warwatch",
"version": "1.0.0",
"description": "",
"private": true,
"workspaces": [
"client",
"server"
],
"scripts": {
"dev": "concurrently -n server,client -c blue,green \"npm -w server run dev\" \"npm -w client run dev\"",
"dev:openai": "node ./scripts/dev-with-openai.mjs",
"env:set-openai": "node ./scripts/set-openai-key-from-clipboard.mjs",
"build": "npm -w client run build && npm -w server run build",
"start": "npm -w server run start",
"lint": "npm -w client run lint || exit 0",
"typecheck": "npm -w client run typecheck && npm -w server run typecheck"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"concurrently": "^9.1.0"
}
}