-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.28 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.28 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
40
41
42
43
44
45
{
"name": "mono-repo",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"dev": "turbo dev",
"dev:web": "turbo dev --filter=@apps/web -- --webpack",
"dev:bo": "turbo dev --filter=@apps/bo",
"dev:api": "turbo dev --filter=@apps/api",
"dev:ai": "cd apps/ai-service && ./gradlew bootRun",
"build": "turbo build",
"lint": "turbo lint"
},
"devDependencies": {
"@types/node": "^25.1.0",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.0",
"turbo": "^2.8.10",
"typescript": "^5"
},
"lint-staged": {
"apps/web/**/*.{js,jsx,ts,tsx}": [
"pnpm -F @apps/web lint:fix"
],
"packages/ui/**/*.{js,jsx,ts,tsx}": [
"pnpm -F @blog/ui lint:fix",
"pnpm -F @blog/ui format"
],
"*.{json,md,css}": [
"prettier --write"
]
}
}