-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.03 KB
/
package.json
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
34
{
"name": "npm-workspace-monorepo",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "npx [email protected] --names \"server,frontend\" \"cd server && npm run dev\" \"cd frontend && npm run dev\" --kill-others-on-fail",
"build": "npm run build --workspaces --if-present",
"start": "cd ./server && npm run db:migrate && npm run start",
"test": "npm run test --workspaces --if-present",
"first-setup": "lefthook install"
},
"engines": {
"node": "20.16.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@eslint/js": "9.13.0",
"check-dependency-version-consistency": "4.1.0",
"eslint": "9.13.0",
"eslint-plugin-react-hooks": "5.0.0",
"lefthook": "1.5.2",
"npm-package-json-lint": "8.0.0",
"typescript": "5.6.2",
"typescript-eslint": "8.11.0"
},
"npmpackagejsonlint": {
"rules": {
"prefer-absolute-version-dependencies": "error",
"prefer-absolute-version-devDependencies": "error"
}
},
"workspaces": ["frontend", "server"]
}