-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
93 lines (93 loc) · 2.71 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
{
"name": "MTD__project-template__react-tailwind",
"version": "0.1.0",
"private": true,
"dependencies": {
"@reduxjs/toolkit": "^1.8.6",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"axios": "^1.3.4",
"react": "^18.2.0",
"react-app-rewired": "^2.2.1",
"react-dom": "^18.2.0",
"react-intl": "^6.2.0",
"react-redux": "^8.0.4",
"react-router-dom": "^6.4.2",
"react-scripts": "5.0.1",
"redux-saga": "^1.2.1",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"lint": "eslint --fix --ignore-path .eslintignore --ext .js,.ts,.tsx,.jsx .",
"eject": "react-scripts eject",
"storybook": "storybook dev -p 6006 -s public",
"build-storybook": "storybook build -s public"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
],
"overrides": [
{
"files": [
"**/*.stories.*"
],
"rules": {
"import/no-anonymous-default-export": "off"
}
}
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@storybook/addon-actions": "^7.0.0-beta.55",
"@storybook/addon-essentials": "^7.0.0-beta.55",
"@storybook/addon-interactions": "^7.0.0-beta.55",
"@storybook/addon-links": "^7.0.0-beta.55",
"@storybook/addon-mdx-gfm": "^7.0.0-beta.55",
"@storybook/node-logger": "^7.0.0-beta.55",
"@storybook/preset-create-react-app": "^7.0.0-beta.55",
"@storybook/react": "^7.0.0-beta.55",
"@storybook/react-webpack5": "^7.0.0-beta.55",
"@storybook/testing-library": "^0.0.14-next.1",
"@tailwindcss/forms": "^0.5.3",
"@types/jest": "^27.5.2",
"@types/node": "^16.11.65",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"@types/redux-saga": "^0.10.5",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"autoprefixer": "^10.4.12",
"babel-plugin-named-exports-order": "^0.0.2",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-storybook": "^0.6.11",
"eslint-plugin-unused-imports": "^2.0.0",
"postcss": "^8.4.18",
"prettier": "^2.8.4",
"prop-types": "^15.8.1",
"react-app-alias": "^2.2.2",
"storybook": "^7.0.0-beta.55",
"tailwindcss": "^3.1.8",
"typescript": "^4.8.4",
"webpack": "^5.75.0"
}
}