-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.84 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
{
"dependencies": {
"@storybook/react": "^6.4.22",
"@storybook/testing-library": "^0.0.9",
"@types/react": "^17.0.43",
"@types/react-dom": "^17.0.14",
"autoprefixer": "^10.4.4",
"clsx": "^1.1.1",
"next": "^12.1.4",
"postcss": "^8.4.12",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"tailwindcss": "^3.0.23",
"typescript": "^4.6.3"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@next/eslint-plugin-next": "^12.1.3",
"@storybook/addon-actions": "^6.4.22",
"@storybook/addon-essentials": "^6.4.22",
"@storybook/addon-interactions": "^6.4.22",
"@storybook/addon-links": "^6.4.22",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/builder-webpack5": "^6.4.22",
"@storybook/manager-webpack5": "^6.4.22",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.23",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"babel-loader": "^8.2.4",
"eslint": "^8.12.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^2.7.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"eslint-plugin-tailwindcss": "^3.5.0",
"eslint-plugin-typescript-sort-keys": "^2.1.0",
"prettier": "^2.6.1",
"webpack": "^5.72.0"
},
"license": "MIT",
"overrides": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"scripts": {
"build": "next build",
"build-storybook": "build-storybook",
"check": "prettier --check . && tsc --noEmit && eslint '**/*.{js,ts,tsx}'",
"dev": "next dev",
"fix": "prettier --write . && tsc --noEmit && eslint '**/*.{js,ts,tsx}' --fix",
"start": "next start",
"storybook": "start-storybook -p 6006"
}
}