-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.98 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
{
"name": "react-webpack-starter",
"version": "2.0.4",
"private": true,
"main": "src/index.tsx",
"repository": {
"type": "git",
"url": "https://github.com/valera-rozuvan/react-webpack-starter.git"
},
"engines": {
"node": ">=16.0.0"
},
"author": "Valera Rozuvan",
"license": "MIT",
"browserslist": [
"IE 6",
"Chrome 9",
"Firefox 14"
],
"scripts": {
"build": "webpack --env BUILD_ENV=production",
"build:local": "webpack --env BUILD_ENV=development",
"start": "webpack-dev-server --env BUILD_ENV=development",
"lint": "eslint ./",
"lint:fix": "eslint --fix ./"
},
"devDependencies": {
"@babel/core": "7.23.9",
"@babel/preset-env": "7.23.9",
"@babel/preset-react": "7.23.3",
"@types/react": "18.2.51",
"@types/react-dom": "18.2.18",
"@types/react-redux": "7.1.33",
"@types/react-router-dom": "5.3.3",
"@types/webpack": "5.28.5",
"@typescript-eslint/eslint-plugin": "6.20.0",
"@typescript-eslint/parser": "6.20.0",
"autoprefixer": "10.4.17",
"babel-loader": "9.1.3",
"copy-webpack-plugin": "12.0.2",
"css-loader": "6.10.0",
"dotenv": "16.4.1",
"eslint": "8.56.0",
"eslint-config-airbnb": "19.0.4",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"html-webpack-plugin": "5.6.0",
"mini-css-extract-plugin": "2.8.0",
"postcss": "8.4.33",
"postcss-import": "16.0.0",
"postcss-loader": "8.1.0",
"sass": "1.70.0",
"sass-loader": "14.1.0",
"style-loader": "3.3.4",
"ts-loader": "9.5.1",
"typescript": "5.3.3",
"typescript-plugin-css-modules": "5.0.2",
"webpack": "5.90.0",
"webpack-cli": "5.1.4",
"webpack-dev-server": "4.15.1"
},
"dependencies": {
"@redux-devtools/extension": "3.3.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-redux": "9.1.0",
"react-router-dom": "6.21.3",
"redux": "5.0.1"
}
}