-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
169 lines (169 loc) · 5.96 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
{
"name": "project-connect",
"version": "0.0.0",
"author": "doasync",
"private": true,
"scripts": {
"start": "cross-env NODE_ENV=development webpack-dev-server --config webpack/config.dev.ts",
"build": "cross-env NODE_ENV=production webpack --config webpack/config.prod.ts",
"build-info": "webpack --config webpack/config.info.ts",
"ts": "tsc -p tsconfig.json",
"ts-files": "tsc --listFiles -p tsconfig.json",
"ts-coverage": "shx mkdir -p .coverage/typescript && typescript-coverage-report -s -t 98 -o .coverage/typescript",
"eslint": "eslint '**/*.{js,jsx,ts,tsx,mdx}'",
"stylelint": "stylelint '**/*.{css,scss,html,js,jsx,ts,tsx}'",
"lint": "yarn eslint && yarn stylelint",
"qa": "yarn ts && yarn lint && yarn test-silent && yarn codestyle",
"codestyle": "prettier --check '**/*'",
"format": "prettier --write '**/*'",
"fix": "yarn eslint --fix && yarn stylelint --fix",
"test": "jest --no-cache",
"test-silent": "dotenv -e test.env -- jest --reporters=jest-silent-reporter",
"test-coverage": "jest --coverage",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,mdx}": "eslint --fix",
"**/*.{css,scss,html,js,jsx,ts,tsx}": "stylelint --fix",
"**/*": "prettier --write"
},
"engines": {
"node": ">= 12.18.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@hot-loader/react-dom": "^16.13.0",
"@storybook/addon-actions": "^6.0.26",
"@storybook/addon-docs": "^6.0.26",
"@storybook/addon-essentials": "^6.0.26",
"@storybook/addon-links": "^6.0.26",
"@storybook/addons": "^6.0.26",
"@storybook/core": "^6.0.26",
"@storybook/react": "^6.0.26",
"@svgr/webpack": "^5.4.0",
"@types/babel__preset-env": "^7.9.0",
"@types/dotenv-webpack": "^3.0.0",
"@types/eslint": "^7.2.3",
"@types/jest": "^26.0.14",
"@types/mapbox-gl": "^1.12.1",
"@types/mini-css-extract-plugin": "^0.9.1",
"@types/node": "^14.11.2",
"@types/optimize-css-assets-webpack-plugin": "^5.0.1",
"@types/postcss-flexbugs-fixes": "^4.2.0",
"@types/prettier": "^2.1.1",
"@types/react": "^16.9.49",
"@types/react-dom": "^16.9.8",
"@types/react-transition-group": "^4.4.0",
"@types/styled-components": "^5.1.3",
"@types/stylelint": "^9.10.1",
"@types/terser-webpack-plugin": "^4.2.0",
"@types/webpack": "^4.41.22",
"@types/webpack-bundle-analyzer": "^3.8.0",
"@types/webpack-dev-server": "^3.11.0",
"@types/webpack-env": "^1.15.3",
"@types/webpack-merge": "^4.1.5",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"babel-jest": "^26.3.0",
"babel-loader": "^8.1.0",
"babel-plugin-styled-components": "^1.11.1",
"browserslist": "^4.14.5",
"clean-webpack-plugin": "^3.0.0",
"cross-env": "^7.0.2",
"css-loader": "^4.3.0",
"dotenv": "^8.2.0",
"dotenv-cli": "^4.0.0",
"dotenv-webpack": "^3.0.0",
"eslint": "^7.9.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-airbnb-typescript": "^10.0.0",
"eslint-config-prettier": "^6.12.0",
"eslint-config-xo-react": "^0.23.0",
"eslint-config-xo-space": "^0.25.0",
"eslint-config-xo-typescript": "^0.33.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^24.0.2",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-mdx": "^1.8.2",
"eslint-plugin-react": "^7.21.2",
"eslint-plugin-react-hooks": "^4.1.2",
"eslint-plugin-simple-import-sort": "^5.0.3",
"eslint-plugin-unicorn": "^22.0.0",
"fibers": "^5.0.0",
"file-loader": "^6.1.0",
"flow-bin": "^0.134.0",
"full-icu": "^1.3.1",
"html-webpack-plugin": "^4.5.0",
"husky": "^4.3.0",
"jest": "^26.4.2",
"jest-silent-reporter": "^0.2.1",
"jest-styled-components": "^7.0.3",
"jest-transform-stub": "^2.0.0",
"lint-staged": "^10.4.0",
"mini-css-extract-plugin": "^0.11.2",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"postcss": "^8.1.1",
"postcss-flexbugs-fixes": "^4.2.1",
"postcss-loader": "^4.0.4",
"postcss-normalize": "^9.0.0",
"postcss-preset-env": "^6.7.0",
"postcss-scss": "^3.0.2",
"prettier": "^2.1.2",
"react-hot-loader": "^4.13.0",
"resolve-url-loader": "^3.1.1",
"sass": "^1.27.0",
"sass-loader": "^10.0.2",
"shx": "^0.3.2",
"style-loader": "^1.2.1",
"stylelint": "^13.7.2",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-rational-order": "^0.1.2",
"stylelint-config-sass-guidelines": "^7.1.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-config-styled-components": "^0.1.1",
"stylelint-config-xo-scss": "^0.14.0",
"stylelint-config-xo-space": "^0.15.1",
"stylelint-order": "^4.1.0",
"stylelint-scss": "^3.18.0",
"terser-webpack-plugin": "^4.2.2",
"ts-jest": "^26.4.0",
"ts-node": "^9.0.0",
"tsconfig-paths-webpack-plugin": "^3.3.0",
"type-fest": "^0.16.0",
"typescript": "^4.0.3",
"typescript-coverage-report": "^0.1.3",
"webpack": "^4.44.2",
"webpack-bundle-analyzer": "^3.9.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.1.4"
},
"dependencies": {
"@matt-block/react-recaptcha-v2": "^1.0.6",
"clsx": "^1.1.1",
"core-js": "^3.6.5",
"date-fns": "^2.16.1",
"effector": "^21.4.2",
"effector-react": "^21.0.6",
"geojson": "^0.5.0",
"history": "^5.0.0",
"jest-svg-transformer": "^1.0.0",
"mapbox-gl": "^1.12.0",
"path-to-regexp": "^6.2.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-is": "^16.13.1",
"react-perfect-scrollbar": "1.5.3",
"react-transition-group": "^4.4.1",
"styled-components": "^5.2.0",
"styled-normalize": "^8.0.7"
},
"resolutions": {
"perfect-scrollbar": "1.4.0"
}
}