-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.56 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
42
43
44
45
46
47
48
49
50
51
{
"name": "wow-class",
"private": true,
"scripts": {
"build": "turbo build",
"codegen:build": "pnpm ui:codegen && pnpm ui:cssgen && pnpm admin:codegen && pnpm client:codegen && pnpm styled-system:format",
"ui:build": "turbo run build --filter=@wow-class/ui",
"admin:build": "turbo run build --filter=admin",
"client:build": "turbo run build --filter=client",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"prepare": "husky",
"ui:codegen": "cd packages/ui && pnpm panda codegen",
"ui:cssgen": "cd packages/ui && pnpm generate:css-file",
"admin:codegen": "cd apps/admin && pnpm panda codegen",
"client:codegen": "cd apps/client && pnpm panda codegen",
"styled-system:format": "prettier --write packages/ui/styled-system/** packages/ui/src/styles.css apps/admin/styled-system/** apps/client/styled-system/**",
"storybook": "cd packages/ui && pnpm storybook"
},
"lint-staged": {
"**/*.{jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-push": "pnpm codegen:build"
}
},
"devDependencies": {
"@pandacss/dev": "^0.44.0",
"@wow-class/panda-config": "workspace:*",
"husky": "^9.1.4",
"lint-staged": "^15.2.7",
"prettier": "^3.2.5",
"turbo": "^2.0.11",
"typescript": "^5.4.5"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
},
"dependencies": {
"clsx": "^2.1.1",
"wowds-icons": "^0.1.4",
"wowds-tokens": "^0.1.1",
"wowds-ui": "^0.1.20"
}
}