-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.34 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": "audit-log",
"version": "0.1.0",
"private": true,
"dependencies": {
"@ant-design/icons": "4.0.0",
"@emotion/react": "^11.6.0",
"@emotion/styled": "^11.6.0",
"@mui/icons-material": "^5.1.0",
"@mui/material": "^5.1.0",
"@reduxjs/toolkit": "^1.5.1",
"@remotion/player": "^2.5.4",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@testing-library/user-event": "^7.1.2",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.7",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"@types/react-redux": "^7.1.7",
"@types/react-test-renderer": "^17.0.1",
"antd": "^4.16.13",
"eslint-config-react-app": "6.0.0",
"eslint-plugin-prettier": "3.1.4",
"eslint-plugin-react-hooks": "4.2.0",
"history": "5",
"jest-watch-typeahead": "0.6.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-redux": "^7.2.0",
"react-router-dom": "^6.0.0",
"react-scripts": "4.0.3",
"sass": "^1.43.4",
"typescript": "~4.1.5"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"eject": "react-scripts eject",
"lint": "eslint --max-warnings=0 --cache --cache-location ./.eslintcache ./src --ext .js,.ts,.tsx -c ./.eslintrc.js",
"lint:fix": "eslint --max-warnings=0 --cache --cache-location ./.eslintcache --fix ./src --ext .js,.ts,.tsx -c ./.eslintrc.js",
"test": "react-scripts test --testPathIgnorePatterns=src/shared src/types --watchAll=false --maxWorkers=50%",
"coverage": "react-scripts test --watchAll=false --maxWorkers=50% --coverage --unhandled-rejections=strict",
"coverage:diff": "yarn test --coverage --changedSince=master"
},
"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": {
"@testing-library/react-hooks": "3.4.1",
"@types/react-router-dom": "^5.3.2",
"@typescript-eslint/eslint-plugin": "4.32.0",
"@typescript-eslint/parser": "4.32.0",
"codecov": "3.7.2",
"cypress": "^8.7.0",
"eslint-plugin-jest": "23.20.0",
"husky": "4.2.5",
"prettier": "2.0.5",
"react-test-renderer": "^17.0.2"
}
}