This repository has been archived by the owner on Jan 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 2.2 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
{
"name": "Project",
"version": "1.0.0",
"description": "Project react app",
"scripts": {
"start": "webpack serve",
"dev": "webpack serve",
"prod": "webpack serve --mode=production",
"build": "webpack --mode=production",
"lint": " eslint src/**/*.ts{,x}",
"coverage": "tsc",
"prepare": "husky install",
"prettier": "prettier --write ."
},
"author": "Alekseev K.A.",
"license": "ISC",
"dependencies": {
"axios": "^0.25.0",
"classnames": "^2.3.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-modal": "^3.14.4",
"react-redux": "^7.2.6",
"react-router-dom": "^6.2.1",
"redux": "^4.1.2",
"redux-thunk": "^2.4.1"
},
"devDependencies": {
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/react-modal": "^3.13.1",
"@types/react-redux": "^7.1.22",
"@types/react-router-dom": "^5.3.3",
"@types/webpack": "5.28.0",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"css-loader": "^6.5.1",
"css-minimizer-webpack-plugin": "^3.4.1",
"dotenv": "^14.2.0",
"dotenv-webpack": "^7.0.3",
"eslint": "8.7.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jest": "^25.7.0",
"eslint-plugin-jsx-a11y": "6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "7.28.0",
"eslint-plugin-react-hooks": ">=4.3.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^7.0.4",
"mini-css-extract-plugin": "^2.5.2",
"prettier": "^2.5.1",
"prettier-eslint": "^13.0.0",
"process": "^0.11.10",
"react-refresh": "^0.11.0",
"redux-devtools-extension": "^2.13.9",
"sass": "^1.49.0",
"sass-loader": "^12.4.0",
"style-loader": "^3.3.1",
"svg-inline-loader": "^0.8.2",
"terser-webpack-plugin": "^5.3.0",
"ts-loader": "9.2.6",
"typescript": "4.5.5",
"url-loader": "^4.1.1",
"web-vitals": "^2.1.3",
"webpack": "^5.66.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.3"
}
}