-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.25 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
{
"name": "React-Class-June-22",
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"format": "prettier --write \"10-redux/src/**/*.{js, jsx}\"",
"lint": "eslint \"10-redux/src/**/*.{js, jsx}\" --quiet",
"dev": "parcel 10-redux/src/index.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Shift3/React-Class-June-22.git"
},
"keywords": [],
"author": "Mehdi Aitbrahim",
"license": "ISC",
"bugs": {
"url": "https://github.com/Shift3/React-Class-June-22/issues"
},
"homepage": "https://github.com/Shift3/React-Class-June-22#readme",
"dependencies": {
"axios": "^0.27.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.6",
"react-router-dom": "^5.2.0",
"redux": "^4.1.2"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.6.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"parcel": "^2.2.1",
"prettier": "^2.5.1",
"process": "^0.11.10"
},
"browserslist": [
"last 2 Chrome versions"
]
}