-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.17 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.17 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
35
36
37
38
39
{
"name": "salesops",
"private": true,
"version": "0.0.0",
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "npm run dev --workspace=@salesops/web",
"dev:web": "npm run dev --workspace=@salesops/web",
"dev:api": "npm run dev --workspace=@salesops/api",
"build": "npm run build --workspace=@salesops/shared && npm run build --workspaces --if-present",
"build:web": "npm run build --workspace=@salesops/web",
"build:api": "npm run build --workspace=@salesops/api",
"lint": "npm run lint --workspaces --if-present",
"lint:staged": "lint-staged",
"test": "npm run test --workspaces --if-present",
"prepare": "husky"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --max-warnings=0 --no-warn-ignored --fix"
]
},
"devDependencies": {
"@commitlint/cli": "^20.4.0",
"@commitlint/config-conventional": "^20.4.0",
"@eslint/js": "^9.39.1",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"typescript-eslint": "^8.46.4"
}
}