-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.43 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.43 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "controlled",
"version": "0.1.0",
"description": "",
"main": "index.ts",
"types": "./dist/index.d.ts",
"scripts": {
"story": "start-storybook -p 6006",
"build": "npm run generate-dts",
"build-storybook": "build-storybook",
"clean": "rd /s /q dist",
"lint-all": "eslint --fix .",
"lint-cache": "eslint --cache --fix .",
"ts:check": "tsc --skipLibCheck --noEmit",
"prepare": "husky install",
"generate-dts": "tsc -p tsconfig.json"
},
"repository": {
"type": "git"
},
"author": "",
"license": "ISC",
"dependencies": {
"react-hook-form": "7.33.1"
},
"peerDependencies": {
"react": "^18.1.0",
"react-dom": "^18.1.0",
"react-hook-form": "7.33.1"
},
"devDependencies": {
"antd": "^5.8.2",
"classnames": "^2.3.1",
"@vanilla-extract/babel-plugin": "^1.1.7",
"@vanilla-extract/css": "^1.7.2",
"@vanilla-extract/webpack-plugin": "^2.1.11",
"@babel/core": "^7.18.2",
"@babel/preset-env": "^7.18.2",
"@babel/preset-react": "^7.17.12",
"@babel/preset-typescript": "^7.17.12",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
"@storybook/addon-actions": "^6.5.9",
"@storybook/addon-essentials": "^6.5.9",
"@storybook/addon-interactions": "^6.5.9",
"@storybook/addon-links": "^6.5.9",
"@storybook/addon-storyshots": "^6.5.9",
"@storybook/addons": "^6.5.13",
"@storybook/builder-webpack5": "^6.5.9",
"@storybook/manager-webpack5": "^6.5.9",
"@storybook/react": "^6.5.9",
"@storybook/theming": "^6.5.13",
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"@types/jsdom": "^16.2.14",
"@types/node": "^18.0.0",
"@types/react": "^18.0.10",
"@types/react-dom": "^18.0.5",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"babel-loader": "^8.2.5",
"cross-env": "^7.0.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.5.12",
"husky": "^8.0.1",
"lint-staged": "^13.0.0",
"prettier": "^2.6.2",
"react-refresh": "^0.13.0",
"ts-loader": "^9.3.0",
"ts-node": "^10.8.1",
"typescript": "^4.7.2"
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --cache --fix"
}
}