-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.17 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.17 KB
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": "toitdocs",
"version": "0.1.0",
"private": true,
"dependencies": {
"@emotion/react": "^11.4.1",
"@emotion/styled": "^11.3.0",
"@fontsource/roboto": "^5.0.15",
"@material-ui/core": "^4.11.0",
"@material-ui/icons": "^4.9.1",
"@reduxjs/toolkit": "^1.4.0",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.0.4",
"@testing-library/user-event": "^12.1.6",
"@types/react-dom": "^17.0.2",
"@types/react-redux": "^7.1.11",
"@types/react-router-dom": "^5.1.6",
"@types/react-router-hash-link": "^1.2.1",
"codemirror": "^5.59.4",
"fuse.js": "^6.4.1",
"react": "^17.0.2",
"react-codemirror2": "^7.2.1",
"react-dom": "^17.0.2",
"react-icons": "^4.2.0",
"react-redux": "^7.2.1",
"react-router-dom": "^5.2.0",
"react-router-hash-link": "^2.2.2",
"react-scripts": "^3.4.3",
"redux": "^4.0.5",
"typescript": "^4.0.3"
},
"scripts": {
"start": "react-scripts start",
"lint": "eslint '*/**/*.{js,ts,tsx}' --max-warnings=0",
"fix-lint": "eslint --fix '*/**/*.{js,ts,tsx}' --max-warnings=0",
"build": "PUBLIC_URL=./ react-scripts build",
"test": "react-scripts test",
"test:jenkins": "react-scripts test --ci ---coverage --reporters=default --reporters=jest-junit",
"cypress": "cypress run",
"test:ci": "start-server-and-test 'yarn start' 3000 'yarn cypress'",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"cypress": "^8.6.0",
"eslint": "6",
"eslint-config-prettier": "^6.11.0",
"eslint-config-react-app": "^5.2.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-app": "^6.2.2",
"eslint-plugin-react-hooks": "^4.1.0",
"jest-junit": "^12.0.0",
"prettier": "^2.1.1",
"start-server-and-test": "^1.14.0"
},
"resolutions": {
"**/react": "17.0.2",
"**/react-dom": "17.0.2"
}
}