-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
75 lines (75 loc) · 1.87 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
75
{
"name": "example-app",
"version": "0.1.0",
"private": true,
"workspaces": [
"../lib"
],
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"test:gui": "majestic",
"lint": "monoreact lint"
},
"dependencies": {
"@reduxjs/toolkit": "1.8.6",
"grommet": "2.23.0",
"grommet-icons": "4.7.0",
"history": "5.3.0",
"jest-fetch-mock": "3.0.3",
"node-sass": "7.0.3",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-html-parser": "2.0.2",
"react-redux": "8.0.2",
"react-router-dom": "6.3.0",
"react-scripts": "5.0.1",
"redux": "4.2.0",
"redux-pending-effects": "*",
"redux-promise-middleware": "6.1.2",
"redux-saga": "1.1.3",
"redux-saga-tester": "1.0.874",
"redux-thunk": "2.4.1",
"styled-components": "5.3.5"
},
"devDependencies": {
"@types/jest": "27.5.2",
"@types/node": "17.0.35",
"@types/react": "17.0.45",
"@types/react-dom": "17.0.17",
"@types/react-html-parser": "2.0.2",
"@types/react-redux": "7.1.24",
"@types/redux-mock-store": "1.0.3",
"@typescript-eslint/parser": "5.41.0",
"eslint-config-prettier": "8.5.0",
"eslint-config-react-app": "6.0.0",
"eslint-plugin-compat": "4.0.2",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-sonarjs": "0.13.0",
"majestic": "1.8.1",
"prettier": "2.6.2",
"redux-devtools-extension": "2.13.9",
"redux-mock-store": "1.5.4",
"tslib": "2.4.0",
"typescript": "4.6.4",
"yarn": "1.22.19"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"jest": {
"transformIgnorePatterns": [
"/node_modules/(?!redux-pending-effects).js$"
]
}
}