-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.45 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
52
{
"name": "jh-design",
"private": false,
"version": "1.0.0",
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint . --ignore-pattern 'styled-system/'",
"preview": "vite preview",
"preinstall": "npx only-allow pnpm",
"token": "pnpm --filter token",
"app": "pnpm --filter app",
"ui": "pnpm --filter ui",
"script": "pnpm --filter script",
"prepare": "husky",
"format": "prettier --cache --write . --ignore-path .prettierignore .",
"lint-staged": "lint-staged",
"turbo": "turbo check-types"
},
"lint-staged": {
"*.{tsx,ts,jsx,js}": [
"eslint --fix",
"prettier --cache --write . --ignore-path .prettierignore .",
"tsc-files --noEmit"
]
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.11.0",
"@typescript-eslint/parser": "^7.11.0",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.6",
"eslint-plugin-storybook": "^0.8.0",
"husky": "^9.1.4",
"lint-staged": "^15.2.7",
"plop": "^4.0.1",
"token-transformer": "^0.0.33",
"tsc-files": "^1.1.4",
"turbo": "^2.0.9",
"typescript": "^5.2.2",
"vite": "^5.3.3",
"vite-plugin-dts": "^3.9.1"
},
"workspaces": [
"packages/*"
]
}