-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.05 KB
/
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
37
38
39
40
41
{
"name": "ani-fe",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"dev:web": "turbo dev --filter=@ani/web",
"lint": "turbo lint",
"lint:web": "turbo lint --filter=@ani/web",
"lint:ui": "turbo lint --filter=@repo/ui",
"lint:util": "turbo lint --filter=@repo/util",
"build:web": "turbo build --filter=@ani/web",
"build:ui": "turbo build --filter=@repo/ui",
"type-check": "turbo type-check",
"storybook": "turbo storybook",
"format": "turbo format",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.2.2",
"@config/es-config": "workspace:*",
"@config/libs": "workspace:*",
"eslint": "^8.57.0",
"husky": "9.0.3",
"lint-staged": "15.2.0",
"prettier": "^3.2.5",
"turbo": "^2.2.3",
"typescript": "^5.3.3",
"zod": "^3.23.8"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
},
"workspaces": [
"apps/*",
"packages/*",
"config/*"
]
}