forked from code4romania/teacher-workout-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.56 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
{
"name": "teacher-workout",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "react-scripts start",
"lint": "eslint . --ext=js,jsx --config .eslintconfig",
"lint:fix": "eslint . --ext=js,jsx --fix --config .eslintconfig",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"dependencies": {
"@apollo/client": "3.3.20",
"@emotion/react": "11.5.0",
"@emotion/styled": "11.3.0",
"@mui/icons-material": "5.0.5",
"@mui/material": "5.0.6",
"@mui/styles": "5.0.2",
"@reduxjs/toolkit": "1.6.0",
"graphql": "15.5.1",
"html-react-parser": "^1.2.7",
"lodash": "4.17.21",
"prop-types": "15.7.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-redux": "7.2.4",
"react-router": "5.2.0",
"react-router-dom": "5.2.0",
"react-scripts": "4.0.3",
"redux-observable": "2.0.0",
"rxjs": "7.1.0",
"web-vitals": "1.0.1"
},
"devDependencies": {
"babel-eslint": "10.1.0",
"eslint": "7.29.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-filenames": "1.3.2",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "5.1.0",
"eslint-plugin-react": "7.24.0",
"eslint-plugin-react-hooks": "4.2.0"
},
"engines": {
"node": ">=14"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}