-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.1 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.1 KB
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": "git-intelligence-root",
"version": "0.2.1",
"private": true,
"license": "MIT",
"scripts": {
"dev": "concurrently \"npm run dev --prefix server\" \"npm run dev --prefix client\"",
"install:all": "npm install && npm install --prefix server && npm install --prefix client",
"package-repo": "node scripts/package-repo.js",
"format": "npm run format --prefix client && npm run format --prefix server",
"format:check": "npm run format:check --prefix client && npm run format:check --prefix server",
"lint": "npm run lint --prefix client",
"test": "npm run test --prefix client && npm run test --prefix server",
"build": "npm run build --prefix server && npm run build --prefix client",
"prepare": "husky"
},
"devDependencies": {
"concurrently": "^9.1.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.2"
},
"lint-staged": {
"client/src/**/*.{ts,tsx,js,jsx,json,css}": [
"prettier --write"
],
"server/src/**/*.{ts,js,json}": [
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
}
}