-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
134 lines (134 loc) · 3.89 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "hat-frontend-react",
"version": "0.1.0",
"private": true,
"dependencies": {
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"@ramonak/react-progress-bar": "^5.0.3",
"@tanstack/react-query": "^4.28.0",
"@tanstack/react-query-devtools": "^4.29.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@types/node": "^16.18.23",
"@types/react": "^18.0.33",
"@types/react-dom": "^18.0.11",
"@types/styled-components": "^5.1.26",
"autoprefixer": "^10.4.14",
"axios": "^1.3.5",
"babel-plugin-macros": "^3.1.0",
"date-fns": "^2.29.3",
"dotenv": "^16.0.3",
"path": "^0.12.7",
"postcss-cli": "^10.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.8.0",
"react-infinite-scroller": "^1.2.6",
"react-loader-spinner": "^5.3.4",
"react-router-dom": "^6.10.0",
"react-scripts": "5.0.1",
"react-slick": "^0.29.0",
"react-switch": "^7.0.0",
"recharts": "^2.5.0",
"recoil": "^0.7.7",
"recoil-persist": "^4.2.0",
"slick-carousel": "^1.8.1",
"styled-components": "^5.3.9",
"tailwindcss": "^3.3.1",
"twin.macro": "^3.3.0",
"typescript": "^4.9.5",
"web-vitals": "^2.1.4"
},
"scripts": {
"preStart:copyEnv": "node src/copyEnv.ts",
"build:css": "postcss src/styles/tailwind.css -o src/styles/styles.css",
"watch:css": "postcss src/styles/tailwind.css -o src/styles/styles.css",
"start": "npm run watch:css & react-scripts start",
"build": "GENERATE_SOURCEMAP=false npm run build:css & react-scripts build",
"build:ci": "CI=false GENERATE_SOURCEMAP=false npm run build:css & react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest",
"airbnb"
],
"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": {
"@babel/eslint-parser": "^7.21.3",
"@storybook/addon-essentials": "^7.0.2",
"@storybook/addon-interactions": "^7.0.2",
"@storybook/addon-links": "^7.0.2",
"@storybook/blocks": "^7.0.2",
"@storybook/preset-create-react-app": "^7.0.2",
"@storybook/react": "^7.0.2",
"@storybook/react-webpack5": "^7.0.2",
"@storybook/testing-library": "^0.0.14-next.2",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"babel-plugin-named-exports-order": "^0.0.2",
"eslint": "^8.37.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.8.0",
"eslint-config-react-app": "^7.0.1",
"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.11",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.1",
"prettier": "^2.8.7",
"prop-types": "^15.8.1",
"storybook": "^7.0.2",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"webpack": "^5.78.0"
},
"lint-staged": {
"**/*": [
"eslint --fix",
"prettier --write"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "./husky/pre-push"
}
},
"proxy": "http://localhost:10000/"
}