-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.35 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
{
"name": "minesweeper",
"private": true,
"scripts": {
"analyzer": "webpack --env mode=production --env analyzer",
"build": "webpack --env mode=production",
"cypress:open": "cypress open -C cypress/cypress.config.ts --e2e -b electron",
"cypress:run": "cypress run -C cypress/cypress.config.ts --e2e -b electron",
"cz": "cz",
"start": "webpack serve --env mode=development",
"start:desktop": "webpack serve --env mode=development --env platform=desktop",
"start:mobile": "webpack serve --env mode=development --env platform=mobile"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"browserslist": [
"last 2 versions and > 1%",
"not dead",
"not samsung > 0",
"not op_mob > 0"
],
"prettier": {
"printWidth": 85,
"proseWrap": "always",
"quoteProps": "consistent"
},
"dependencies": {
"@emotion/react": "11.11.3",
"@emotion/styled": "11.11.0",
"@mui/icons-material": "5.15.2",
"@mui/material": "5.15.2",
"@mui/x-data-grid": "6.18.6",
"@reduxjs/toolkit": "2.0.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-redux": "9.0.4"
},
"devDependencies": {
"@cypress/webpack-preprocessor": "6.0.1",
"@pmmmwh/react-refresh-webpack-plugin": "0.5.11",
"@svgr/webpack": "8.1.0",
"@swc/register": "0.1.10",
"@total-typescript/ts-reset": "0.5.1",
"@tsconfig/strictest": "2.0.2",
"@types/node": "20.10.5",
"@types/react": "18.2.46",
"@types/react-dom": "18.2.18",
"@types/webpack": "5.28.5",
"@types/webpack-bundle-analyzer": "4.6.3",
"@typescript-eslint/eslint-plugin": "6.16.0",
"autoprefixer": "10.4.16",
"commitizen": "4.3.0",
"css-loader": "6.8.1",
"css-minimizer-webpack-plugin": "5.0.1",
"cypress": "13.6.2",
"dotenv": "16.3.1",
"eslint": "8.56.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-standard": "17.1.0",
"eslint-config-standard-with-typescript": "43.0.0",
"eslint-import-resolver-webpack": "0.13.8",
"eslint-plugin-cypress": "2.15.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-n": "16.5.0",
"eslint-plugin-perfectionist": "2.5.0",
"eslint-plugin-prettier": "5.1.2",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-sonarjs": "0.23.0",
"eslint-webpack-plugin": "4.0.1",
"fork-ts-checker-webpack-plugin": "9.0.2",
"html-webpack-plugin": "5.6.0",
"image-minimizer-webpack-plugin": "3.8.3",
"lefthook": "1.5.5",
"mini-css-extract-plugin": "2.7.6",
"postcss": "8.4.32",
"postcss-flexbugs-fixes": "5.0.2",
"postcss-loader": "7.3.4",
"postcss-media-minmax": "5.0.0",
"postcss-scss": "4.0.9",
"prettier": "3.1.1",
"react-refresh": "0.14.0",
"react-refresh-typescript": "2.0.9",
"sass": "1.69.5",
"sass-loader": "13.3.3",
"sharp": "0.33.1",
"style-loader": "3.3.3",
"stylelint": "15.11.0",
"stylelint-config-standard-scss": "11.1.0",
"stylelint-order": "6.0.4",
"stylelint-scss": "5.3.1",
"stylelint-stylistic": "0.4.3",
"stylelint-webpack-plugin": "4.1.1",
"terser-webpack-plugin": "5.3.10",
"ts-loader": "9.5.1",
"ts-node": "10.9.2",
"tsconfig-paths-webpack-plugin": "4.1.0",
"typescript": "5.3.3",
"typescript-plugin-css-modules": "5.0.2",
"webpack": "5.89.0",
"webpack-bundle-analyzer": "4.10.1",
"webpack-cli": "5.1.4",
"webpack-dev-server": "4.15.1"
},
"engines": {
"node": "20.9.0"
}
}