-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.91 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
{
"name": "next-tailwind-storybook",
"version": "0.1.2",
"private": true,
"scripts": {
"dev": "next dev -p 3001",
"build": "next build",
"start": "next start",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"prepare": "husky install && chmod +x .husky/pre-commit"
},
"dependencies": {
"autoprefixer": "^10.4.8",
"next": "^12.3.0",
"npm": "^8.19.1",
"postcss": "^8.4.16",
"preact": "^10.11.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"sass": "^1.54.9",
"storybook": "^6.5.10",
"tailwindcss": "^3.1.8"
},
"devDependencies": {
"@babel/core": "^7.19.0",
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@storybook/addon-actions": "^6.5.10",
"@storybook/addon-essentials": "^6.4.20",
"@storybook/addon-links": "^6.5.10",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/builder-webpack5": "^6.5.10",
"@storybook/manager-webpack5": "^6.5.10",
"@storybook/react": "^6.5.10",
"@types/react": "18.0.9",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.37.0",
"babel-loader": "^8.2.5",
"eslint": "^8.23.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "^12.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.6.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"prettier": "^2.7.1",
"typescript": "4.8.3"
},
"lint-staged": {
"*.{js,ts,tsx}": "eslint --cache --fix",
"*.{css,scss}": "stylelint --fix",
"*.{js,jsx,ts,tsx,md,html,css}": "prettier --write"
},
"prettier": {
"arrowParens": "always",
"singleQuote": true,
"semi": false,
"tabWidth": 2,
"trailingComma": "none"
}
}