-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 819 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 819 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": "ragbrain",
"version": "1.0.0",
"private": true,
"description": "Personal knowledge management system with blazing-fast capture and intelligent retrieval",
"workspaces": [
"packages/*",
"apps/web"
],
"scripts": {
"build": "npm run build --workspaces",
"test": "npm run test --workspaces",
"lint": "npm run lint --workspaces",
"typecheck": "npm run typecheck --workspaces",
"dev:web": "npm run dev -w @ragbrain/web",
"dev:api": "npm run dev -w @ragbrain/api",
"deploy:infra": "npm run deploy -w @ragbrain/infra",
"clean": "npm run clean --workspaces"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0",
"prettier": "^3.0.0",
"eslint": "^8.0.0"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
}
}