-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
37 lines (37 loc) ยท 1.01 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
{
"name": "gitanimals",
"private": true,
"scripts": {
"build:web": "turbo build --filter=@gitanimals/web",
"build:admin": "turbo build --filter=@gitanimals/admin",
"analyze:web": "ANALYZE=true turbo build --filter=@gitanimals/web",
"dev:web": "turbo dev --filter=@gitanimals/web",
"dev:admin": "turbo dev --filter=@gitanimals/admin",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"sb:panda": "turbo run storybook --filter=@gitanimals/ui-panda",
"lint-staged": "lint-staged",
"prepare": "husky"
},
"devDependencies": {
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "*",
"turbo": "^2.0.4",
"typescript": "*"
},
"resolutions": {
"typescript": "^5.4.5",
"react": "^18",
"react-dom": "^18.3.1",
"next": "14.2.3",
"prettier": "^3.2.5",
"@tanstack/react-query": "^5.32.0",
"@types/react": "^18"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18",
"pnpm": ">=9.0.0"
}
}