-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.68 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
{
"name": "advanced-react-workshop-exercises",
"version": "0.1.0",
"description": "Advanced React Workshop Exercises",
"keywords": [
"JavaScript",
"Reactive Programming",
"React",
"Redux",
"RxJS"
],
"scripts": {
"start": "react-scripts start",
"lint": "eslint src --ext .js",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"repository": {
"type": "git",
"url": "https://github.com/8pointers/advanced-react-workshop-exercises.git"
},
"author": "Damjan Vujnovic",
"license": "UNLICENSED",
"dependencies": {
"@reduxjs/toolkit": "1.8.1",
"bootstrap": "5.1.3",
"classnames": "2.3.1",
"ramda": "0.28.0",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-redux": "8.0.1",
"react-router": "6.3.0",
"react-router-dom": "6.3.0",
"redux": "4.2.0",
"redux-observable": "2.0.0",
"redux-thunk": "2.4.1",
"rxjs": "7.5.5",
"web-vitals": "2.1.4"
},
"devDependencies": {
"@testing-library/jest-dom": "5.16.4",
"@testing-library/react": "13.1.1",
"@testing-library/user-event": "14.1.1",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.0.0",
"http-proxy-middleware": "2.0.6",
"jest-fetch-mock": "3.0.3",
"msw": "^0.39.2",
"prettier": "2.6.2",
"react-scripts": "5.0.1"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest",
"plugin:prettier/recommended"
]
},
"jest": {
"resetMocks": false
},
"prettier": {
"singleQuote": true,
"printWidth": 100
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
]
}