-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
45 lines (45 loc) · 1.39 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
{
"name": "root",
"version": "1.0.0",
"description": "WAP UI / React UI Components Library",
"repository": "https://github.com/pknu-wap/wap-ui.git",
"author": "neko113 <[email protected]>",
"license": "MIT",
"private": true,
"workspaces": [
"./packages/react"
],
"scripts": {
"wap-ui": "yarn workspace wap-ui",
"build:wap-ui": "yarn wap-ui build",
"storybook": "yarn wap-ui storybook",
"build-storybook": "yarn wap-ui build-storybook",
"publish:wap-ui": "yarn build:wap-ui && yarn wap-ui publish:wap-ui",
"prepare": "husky install",
"format": "prettier --write . --config ./.prettierrc",
"lint": "eslint './packages/react/src/**/*.{ts,tsx}'",
"lint:fix": "eslint --fix './packages/react/src/**/*.{ts,tsx}'"
},
"lint-staged": {
"./packages/**/*.{ts,tsx}": [
"yarn format",
"yarn lint:fix"
]
},
"devDependencies": {
"eslint": "^8.24.0",
"prettier": "^2.7.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.7",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"typescript": "^4.8.3",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"husky": "^8.0.0",
"lint-staged": "^13.0.3"
}
}