-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 760 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 760 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "semantic-notes",
"private": true,
"version": "0.1.0",
"packageManager": "pnpm@9.0.0",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"postinstall": "npm rebuild better-sqlite3",
"predev": "mkdir -p data/chroma",
"dev": "concurrently --names \"chroma,server,web\" --prefix-colors \"blue.bold,yellow.bold,green.bold\" --prefix \"[{name}]\" --kill-others-on-fail \"node scripts/start-chroma.mjs\" \"pnpm --filter server dev\" \"pnpm --filter web dev\"",
"build": "pnpm --filter shared build && pnpm --filter web build && pnpm --filter server build",
"lint": "pnpm -r lint",
"typecheck": "pnpm -r typecheck"
},
"devDependencies": {
"concurrently": "^8.2.2",
"typescript": "^5.4.5"
}
}