-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 3.15 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
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "tailwind-ui-components",
"version": "0.0.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint 'src/**/*.{js,ts,tsx}' --fix",
"prettify": "prettier -c --write src/**/* ",
"lint:style": "stylelint 'src/**/*.{css,scss}' --fix",
"install:clean": "rm -rf node_modules/ && yarn",
"prepare": "husky install",
"pre-commit": "lint-staged",
"storybook": "concurrently \"yarn run watch:css\" \"sb dev -p 6006\" ",
"build-storybook": "yarn run build:css && storybook build",
"build:css": "tailwindcss -o .storybook/tailwind.css",
"watch:css": "tailwindcss -o .storybook/tailwind.css --watch"
},
"dependencies": {
"@headlessui/react": "^1.7.15",
"axios": "^1.4.0",
"classnames": "^2.3.2",
"formik": "^2.4.1",
"rc-tooltip": "^6.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-icons": "^4.9.0",
"react-phone-input-2": "^2.15.1",
"react-select": "^5.7.3",
"sass": "^1.62.1"
},
"devDependencies": {
"@babel/core": "^7.22.1",
"@storybook/addon-actions": "^7.0.18",
"@storybook/addon-essentials": "^7.0.18",
"@storybook/addon-interactions": "^7.0.18",
"@storybook/addon-links": "^7.0.18",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/cli": "^7.0.18",
"@storybook/manager-api": "^7.0.18",
"@storybook/react": "^7.0.18",
"@storybook/react-vite": "^7.0.18",
"@storybook/testing-library": "^0.1.0",
"@types/react": "^18.2.8",
"@types/react-dom": "^18.2.4",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"@vitejs/plugin-react": "^4.0.0",
"autoprefixer": "^10.4.14",
"babel-loader": "^9.1.2",
"concurrently": "^8.1.0",
"css-loader": "^6.8.1",
"eslint": "^8.41.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-storybook": "^0.6.12",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"postcss": "^8.4.24",
"prettier": "^2.8.8",
"sass-loader": "^13.3.1",
"storybook": "^7.0.18",
"style-loader": "^3.3.3",
"stylelint": "^15.6.2",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-prettier-scss": "^1.0.0",
"stylelint-config-standard": "^33.0.0",
"stylelint-config-standard-scss": "^9.0.0",
"tailwindcss": "^3.3.2",
"tsconfig-paths-webpack-plugin": "^4.0.1",
"typescript": "^5.1.3",
"vite": "^4.3.9",
"vite-tsconfig-paths": "^4.2.0"
},
"engines": {
"npm": "please-use-yarn",
"node": "18.16.0",
"yarn": ">=1.22.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,ts,tsx}": [
"yarn run lint",
"yarn run prettify",
"git add --force"
],
"src/**/*.{css,scss}": [
"yarn run lint:style",
"git add --force"
]
}
}