forked from edugator-cise/edugator-staff-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.17 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "my-app",
"version": "0.1.0",
"private": true,
"dependencies": {
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@material-ui/core": "^4.12.4",
"@material-ui/icons": "^4.11.3",
"@monaco-editor/react": "^4.3.1",
"@mui/icons-material": "^5.0.1",
"@mui/lab": "^5.0.0-alpha.50",
"@mui/material": "^5.0.1",
"@mui/styles": "^5.0.1",
"@mui/system": "5.0.2",
"@reduxjs/toolkit": "^1.7.0",
"@testing-library/jest-dom": "^5.14.1",
"@testing-library/user-event": "^7.1.2",
"@types/jest": "^27.0.0",
"@types/node": "^12.0.0",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"@types/react-redux": "^7.1.7",
"allotment": "^1.2.0",
"axios": "^0.21.4",
"buffer": "^6.0.3",
"date-fns": "^2.25.0",
"draft-js": "^0.11.7",
"draft-js-export-html": "^1.4.1",
"draft.js": "^0.2.0",
"draftjs-to-html": "^0.9.1",
"formik": "^2.2.9",
"framer-motion": "^6.2.10",
"interweave": "^13.0.0",
"lottie-react": "^2.3.1",
"monaco-editor": "^0.28.1",
"phosphor-react": "^1.4.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-draft-wysiwyg": "^1.14.7",
"react-markdown": "^7.0.1",
"react-redux": "^7.2.0",
"react-rotating-text": "^1.4.1",
"react-router-dom": "^5.3.0",
"react-scripts": "^5.0.1",
"react-select": "^5.2.2",
"redux-saga": "^1.1.3",
"remark-gfm": "^3.0.0",
"styled-components": "^5.3.5",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.1",
"typescript": "~4.1.5",
"yup": "^0.32.11"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --passWithNoTests --watchAll=false",
"test-modules": "react-scripts test ModulesPage.slice.spec.ts --watchAll=false",
"eject": "react-scripts eject",
"prettier-check": "prettier --check src/**/*.ts{,x}",
"format": "prettier --write src/**/*.ts{,x}",
"lint": "tsc --noEmit && eslint src/**/*.ts{,x} -c eslintrc.js --quiet",
"lint-fix": "tsc --noEmit && eslint src/**/*.ts{,x} -c eslintrc.js --fix",
"pre-pr": "npm run format && npm run lint-fix && npm run test && npm run build"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"overrides": {
"@svgr/webpack": "6.2.1"
},
"devDependencies": {
"@testing-library/react": "^9.5.0",
"@types/draft-js": "^0.11.9",
"@types/draftjs-to-html": "^0.8.1",
"@types/react-draft-wysiwyg": "^1.13.4",
"@types/react-router-dom": "^5.3.0",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"eslint": "^8.2.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^27.1.6",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^2.3.2"
}
}