-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.76 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
{
"name": "cra-alternative",
"version": "1.0.0",
"description": "React-Webpack configuration template",
"main": "index.js",
"license": "ISC",
"author": "Klimenty Kimovich",
"keywords": [
"React",
"Webpack",
"CRA"
],
"scripts": {
"test": "jest",
"build": "webpack build --config webpack.config.prod.ts",
"dev": "webpack serve --config webpack.config.development.ts",
"lint:ts": "eslint --fix --cache --max-warnings=0 .",
"lint:css": "stylelint --fix --color --cache --max-warnings=0 --quiet-deprecation-warnings \"**/*.{scss,css}\"",
"webpack:validate": "webpack configtest",
"format": "prettier --check -w --cache .",
"prepare": "husky install"
},
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
],
"devDependencies": {
"@fullhuman/postcss-purgecss": "5.0.0",
"@swc/html": "^0.0.26",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "14.0.0",
"@types/aria-query": "5.0.1",
"@types/html-webpack-plugin": "3.2.6",
"@types/jest": "^29.5.1",
"@types/postcss-import": "14.0.0",
"@types/react-dom": "18.0.11",
"@types/webpack-bundle-analyzer": "4.6.0",
"@typescript-eslint/eslint-plugin": "5.59.5",
"@typescript-eslint/parser": "5.59.5",
"autoprefixer": "10.4.14",
"css-loader": "6.7.3",
"css-minimizer-webpack-plugin": "5.0.0",
"esbuild-loader": "3.0.1",
"eslint": "8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest-dom": "4.0.3",
"eslint-plugin-react": "7.32.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-testing-library": "5.11.0",
"fork-ts-checker-webpack-plugin": "8.0.0",
"glob": "10.2.2",
"html-minimizer-webpack-plugin": "^4.4.0",
"html-webpack-plugin": "5.1.0",
"identity-obj-proxy": "3.0.0",
"imagemin-webpack-plugin": "2.4.2",
"jest": "29.5.0",
"jest-environment-jsdom": "29.5.0",
"mini-css-extract-plugin": "2.7.5",
"postcss": "8.4.23",
"postcss-import": "15.1.0",
"postcss-loader": "7.1.0",
"postcss-nested": "6.0.1",
"postcss-preset-env": "8.3.2",
"prettier": "3.0.0",
"sass": "^1.63.6",
"sass-loader": "^13.2.2",
"style-loader": "3.3.2",
"stylelint": "15.6.1",
"stylelint-config-clean-order": "5.0.1",
"stylelint-config-standard": "33.0.0",
"stylelint-config-standard-scss": "9.0.0",
"stylelint-order": "6.0.3",
"stylelint-scss": "^5.0.1",
"ts-jest": "29.1.0",
"ts-loader": "9.4.2",
"ts-node": "10.9.1",
"typescript": "5.0.4",
"webpack": "5.76.3",
"webpack-bundle-analyzer": "4.8.0",
"webpack-cli": "5.0.1",
"webpack-dev-server": "4.13.1",
"webpack-manifest-plugin": "5.0.0",
"webpack-merge": "5.8.0",
"webpack-nano": "1.1.1",
"husky": "^8.0.0"
},
"dependencies": {
"@types/eslint": "8.40.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-router": "6.10.0",
"react-router-dom": "6.10.0"
}
}