-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 911 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 911 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
31
32
33
{
"name": "fschchat-monorepo",
"private": true,
"description": "Monorepo for the fschchat frontend and unified backend",
"packageManager": "[email protected]",
"workspaces": [
"frontend",
"backend"
],
"scripts": {
"prepare": "husky install",
"dev": "node scripts/dev-runner.cjs",
"dev:turbo": "docker compose up -d mongo && npx turbo run dev --filter=frontend --filter=backend",
"db:up": "docker compose up -d mongo",
"db:down": "docker compose stop mongo",
"build": "npx turbo run build",
"lint": "npx turbo run lint",
"install-all": "npm install",
"check:e2e": "node scripts/check-e2e.js"
},
"devDependencies": {
"@types/d3": "^7.4.3",
"@types/react-dom": "^19.2.3",
"husky": "^9.1.7",
"turbo": "^2.0.0"
},
"dependencies": {
"axios": "^1.13.6",
"cheerio": "^1.2.0",
"node-fetch": "^3.3.2",
"turndown": "^7.2.2"
}
}