-
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": "profit-lens-core",
"version": "1.0.0",
"description": "High-performance financial intelligence engine.",
"private": true,
"workspaces": [
"client",
"server"
],
"scripts": {
"dev": "concurrently \"npm run dev -w server\" \"npm run dev -w client\"",
"install:all": "npm install && npm install -w client && npm install -w server",
"server": "npm run dev -w server",
"client": "npm run dev -w client",
"test": "npm test -w server",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^21.0.1",
"@commitlint/config-conventional": "^21.0.1",
"concurrently": "^9.1.2",
"husky": "^9.1.7",
"lint-staged": "^17.0.5"
},
"lint-staged": {
"server/src/**/*.ts": [
"eslint --fix --config server/eslint.config.js"
],
"client/src/**/*.{ts,tsx}": [
"eslint --fix --config client/eslint.config.js"
]
}
}