-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1006 Bytes
/
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
35
36
{
"name": "nogame-app",
"version": "1.0.0",
"private": true,
"workspaces": [
"packages/frontend",
"packages/backend"
],
"scripts": {
"dev": "concurrently --kill-others \"cd packages/backend && npm run dev\" \"cd packages/frontend && npm run dev\"",
"build": "concurrently \"cd packages/backend && npm run build\" \"cd packages/frontend && npm run build\"",
"start": "concurrently \"cd packages/backend && npm start\" \"cd packages/frontend && npm run preview\"",
"prepare": "husky install",
"lint": "lerna run lint --parallel",
"format": "lerna run format --parallel",
"type-check": "lerna run type-check --parallel"
},
"devDependencies": {
"concurrently": "^8.2.2",
"husky": "^9.0.6",
"lerna": "^8.0.2",
"lint-staged": "^15.2.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"npm run format",
"npm run lint",
"npm run type-check"
]
}
}