-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.24 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.24 KB
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
{
"name": "react-starter",
"version": "0.0.2",
"author": "Artem Sitnikov <seestein9@gmail.com>",
"license": "MIT",
"scripts": {
"watch": "webpack serve",
"cert": "mkdir -p ./.cert && mkcert -cert-file ./.cert/localhost-cert.pem -key-file ./.cert/localhost-key.pem localhost 127.0.0.1 ::1",
"build": "webpack --node-env production",
"bundle-report": "yarn build --analyze",
"release": "standard-version",
"ts-type-check": "tsc --noEmit",
"lint-js": "eslint --ext .ts --ext .tsx \"src/\" --quiet",
"lint-css": "stylelint \"src/**/*.css\"",
"lint": "yarn run lint-js && yarn run lint-css",
"prepare": "husky install"
},
"resolutions": {
"react": "18.2.0",
"react-dom": "18.2.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --ext .ts --ext .tsx \"src/\" --quiet"
],
"*.css": [
"stylelint"
]
},
"dependencies": {
"@reduxjs/toolkit": "1.8.6",
"classnames": "2.3.2",
"history": "5.3.0",
"normalize.css": "8.0.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-redux": "8.0.4",
"universal-router": "9.1.0"
},
"devDependencies": {
"@babel/cli": "7.19.3",
"@babel/core": "7.19.6",
"@babel/node": "7.20.0",
"@babel/polyfill": "7.12.1",
"@babel/preset-env": "7.19.4",
"@babel/preset-react": "7.18.6",
"@babel/preset-typescript": "7.18.6",
"@commitlint/cli": "17.1.2",
"@commitlint/config-conventional": "17.1.0",
"@types/assets-webpack-plugin": "7.1.0",
"@types/classnames": "2.3.1",
"@types/mini-css-extract-plugin": "2.5.0",
"@types/react": "18.0.24",
"@types/react-dom": "18.0.8",
"@types/react-redux": "7.1.24",
"@types/webpack-bundle-analyzer": "4.6.0",
"@types/webpack-env": "1.18.0",
"@typescript-eslint/eslint-plugin": "5.41.0",
"@typescript-eslint/parser": "5.41.0",
"autoprefixer": "10.4.13",
"babel-eslint": "10.1.0",
"babel-loader": "9.0.0",
"babel-plugin-module-resolver": "4.1.0",
"cache-loader": "4.1.0",
"css-loader": "6.7.1",
"cssnano": "5.1.14",
"eslint": "8.26.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsx-a11y": "6.6.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.31.10",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-webpack-plugin": "3.2.0",
"html-webpack-plugin": "5.5.0",
"husky": "8.0.1",
"lint-staged": "13.0.3",
"mini-css-extract-plugin": "2.6.1",
"postcss": "8.4.18",
"postcss-custom-media": "8.0.2",
"postcss-import": "15.0.0",
"postcss-loader": "7.0.1",
"postcss-nested": "6.0.0",
"postcss-nesting": "10.2.0",
"postcss-omit-import-tilde": "1.0.1",
"postcss-partial-import": "4.1.0",
"prettier": "2.7.1",
"prettier-stylelint": "0.4.2",
"standard-version": "9.5.0",
"style-loader": "3.3.1",
"stylelint": "14.14.0",
"stylelint-config-standard": "29.0.0",
"typescript": "4.6.4",
"webpack": "5.74.0",
"webpack-bundle-analyzer": "4.7.0",
"webpack-cli": "4.10.0",
"webpack-dev-server": "4.11.1"
},
"dependenciesComments": {
"typescript": "after 4.6.4 there is an issue https://github.com/microsoft/TypeScript/issues/49257"
}
}