-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.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": "maximum-ui-root",
"type": "module",
"private": true,
"scripts": {
"build": "turbo build",
"dev:storybook": "turbo dev:storybook",
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"lint:fix": "eslint --fix --ext .js,.jsx,.ts,.tsx .",
"format": "prettier --write '**/*.{json,js,jsx,ts,tsx,html,css}'",
"format:check": "prettier --check '**/*.{json,js,jsx,ts,tsx,html,css}'",
"prepare": "husky install"
},
"lint-staged": {
"*.{json,js,jsx,ts,tsx,html,css}": [
"prettier --write"
],
"*.{js,jsx,ts,tsx}": [
"eslint --fix"
]
},
"keywords": [
"react",
"react-component",
"ui",
"component"
],
"author": "sor4chi",
"license": "MIT",
"devDependencies": {
"@storybook/addon-essentials": "^7.0.24",
"@storybook/addon-interactions": "^7.0.24",
"@storybook/addon-links": "^7.0.24",
"@storybook/blocks": "^7.0.24",
"@storybook/react": "^7.0.24",
"@storybook/react-vite": "^7.0.24",
"@storybook/testing-library": "^0.0.14-next.2",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"prettier": "^2.8.8",
"prop-types": "^15.8.1",
"storybook": "^7.0.24",
"turbo": "^1.10.6",
"typescript": "^5.1.5"
}
}