-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
181 lines (181 loc) · 7.07 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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
{
"name": "react-dashboard",
"private": true,
"description": "weather widget",
"version": "0.0.2",
"homepage": "https://eugenekamikaze.github.io/react-weather/",
"scripts": {
"start:webpack": "webpack serve --env port=3300",
"start:vite": "vite",
"build:webpack:dev": "webpack --env mode=development",
"build:webpack:prod": "webpack --env mode=production",
"build:vite:dev": "vite preview --port 8080",
"build:vite:prod": "vite build",
"architecture:decruise": "depcruise --progress --include-only \"^src\" --config ./config/depcruise/.dependency-cruiser.js --output-type dot src | dot -T svg > ./build/dependencygraph.svg",
"architecture:madge": "madge --extensions ts,tsx --image ./reports/dependency/madge.svg ./src",
"lint:ts": "eslint -c ./config/eslint/.eslintrc.js \"**/*.{ts,tsx}\"",
"lint:ts:circural": "madge --extensions ts,tsx --circular ./src",
"lint:ts:circular:image": "madge --extensions ts,tsx --circular ./src --image ./reports/curcuralError.svg",
"lint:ts:fix": "eslint -c ./config/eslint/.eslintrc.js \"**/*.{ts,tsx}\" --fix --quiet",
"lint:scss": "npx stylelint --config ./config/stylelint/.stylelintrc.js \"**/*.scss\"",
"lint:scss:fix": "npx stylelint --config ./config/stylelint/.stylelintrc.js \"**/*.scss\" --fix",
"lint:fix": "npm run lint:ts:fix && npm run lint:scss:fix",
"test:unit": "jest --config ./config/jest/jest.config.ts",
"test:unit:coverage": "jest --config ./config/jest/jest.config.ts --coverage",
"prettier:fix:all": "concurrently \"npm run prettier:fix:js\" \"npm run prettier:fix:css\"",
"prettier:fix:css": "npx prettier --write **/*.{css,scss,sass,less}",
"prettier:fix:js": "npx prettier --write **/*.{js,jsx,mdx,ts,tsx}",
"format": "npm run prettier:fix && npm run lint:ts:fix && npm run lint:scss:fix",
"storybook:dev": "sb dev -p 6006 -c ./config/storybook",
"storybook:build": "sb build -c ./config/storybook",
"prepare": "husky install"
},
"lint-staged": {
"**/*.{test.ts,test.tsx}": [
"npm run lint:ts:fix",
"npm run test:unit"
],
"**/*.{ts,tsx}": [
"npx prettier --write",
"npm run lint:ts:fix"
],
"**/*.{css,scss}": [
"npm run lint:scss:fix"
]
},
"dependencies": {
"@react-spring/web": "^9.7.3",
"@reduxjs/toolkit": "^1.9.5",
"@use-gesture/react": "^10.2.27",
"axios": "^1.4.0",
"classnames": "^2.3.2",
"formik": "^2.4.2",
"i18next": "^23.2.11",
"i18next-browser-languagedetector": "^7.1.0",
"i18next-http-backend": "^2.2.1",
"react": "^18.2.0",
"react-device-detect": "^2.2.3",
"react-dom": "^18.0.0",
"react-i18next": "^13.0.2",
"react-redux": "^8.1.1",
"react-router-dom": "^6.14.2",
"redux": "^4.2.1",
"vite": "^4.4.6",
"vite-plugin-svgr": "^2.4.0",
"yup": "^1.2.0"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/plugin-transform-runtime": "^7.22.9",
"@babel/plugin-transform-typescript": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@cypress/vite-dev-server": "^5.0.5",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.10",
"@storybook/addon-actions": "^7.1.0",
"@storybook/addon-coverage": "^0.0.9",
"@storybook/addon-essentials": "^7.1.0",
"@storybook/addon-interactions": "^7.1.0",
"@storybook/addon-links": "^7.1.0",
"@storybook/addon-storyshots": "^7.1.0",
"@storybook/addon-storyshots-puppeteer": "^7.1.0",
"@storybook/addon-storysource": "^7.1.0",
"@storybook/addon-styling": "^1.3.4",
"@storybook/builder-vite": "^7.1.0",
"@storybook/builder-webpack5": "^7.1.0",
"@storybook/cli": "^7.1.0",
"@storybook/jest": "^0.1.0",
"@storybook/manager-webpack5": "^6.5.16",
"@storybook/react": "^7.1.0",
"@storybook/react-vite": "^7.1.0",
"@storybook/test-runner": "^0.11.0",
"@storybook/testing-library": "^0.2.0",
"@svgr/webpack": "^8.0.1",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@types/circular-dependency-plugin": "^5.0.5",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.4",
"@types/react": "^18.2.15",
"@types/react-dom": "^18.2.7",
"@types/react-redux": "^7.1.25",
"@types/react-router": "^5.1.20",
"@types/react-router-dom": "^5.3.3",
"@types/react-select": "^5.0.1",
"@types/react-toastify": "^4.1.0",
"@types/webpack": "^5.28.1",
"@types/webpack-bundle-analyzer": "^4.6.0",
"@types/webpack-dev-server": "^4.7.2",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"@typescript-eslint/typescript-estree": "^6.1.0",
"@vitejs/plugin-basic-ssl": "^1.0.1",
"@vitejs/plugin-react": "^4.0.3",
"@whitespace/storybook-addon-html": "^5.1.6",
"babel-loader": "^9.1.3",
"babel-plugin-i18next-extract": "^0.9.0",
"circular-dependency-plugin": "^5.2.2",
"concurrently": "^8.2.0",
"copy-webpack-plugin": "^11.0.0",
"dependency-cruiser": "^13.1.1",
"eslint": "^8.45.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-boundaries": "^3.1.1",
"eslint-plugin-cypress": "^2.13.3",
"eslint-plugin-i18next": "^6.0.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-storybook": "^0.6.13",
"eslint-plugin-ulbi-tv-plugin": "^0.0.10",
"eslint-plugin-unused-imports": "^3.0.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.3",
"husky": "^8.0.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.6.1",
"jest-environment-jsdom": "^29.6.1",
"jest-html-reporters": "^3.1.4",
"lint-staged": "^13.2.3",
"madge": "^6.1.0",
"mini-css-extract-plugin": "^2.7.6",
"postcss": "^8.4.27",
"prettier": "^3.0.0",
"prettier-eslint-cli": "^7.1.0",
"prettier-plugin-css-order": "^1.3.1",
"puppeteer": "^20.9.0",
"react-syntax-highlighter": "^15.5.0",
"reg-cli": "^0.17.7",
"regenerator-runtime": "^0.13.11",
"resolve-ts-aliases": "^1.0.1",
"rollup-plugin-visualizer": "^5.9.2",
"sass": "^1.64.1",
"sass-loader": "^13.3.2",
"storybook-addon-designs": "^7.0.0-beta.2",
"storybook-addon-mock": "^4.1.0",
"storybook-addon-sass-postcss": "^0.1.3",
"storybook-addon-themes": "^6.1.0",
"storybook-css-modules": "^1.0.8",
"storybook-react-i18next": "^2.0.6",
"style-loader": "^3.3.3",
"stylelint": "^15.10.2",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-standard-scss": "^10.0.0",
"stylelint-prettier": "^4.0.0",
"stylelint-scss": "^5.0.1",
"ts-loader": "^9.4.4",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"webpack": "^5.88.2",
"webpack-bundle-analyzer": "^4.9.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}