-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.33 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
{
"name": "task-management-frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"prettier:check": "prettier --check \"**/*.ts*\"",
"prettier:fix": "prettier --write \"**/*.ts*\"",
"lint": "eslint \"**/*.ts*\"",
"lint:fix": "eslint --fix \"**/*.ts*\"",
"start": "cross-env PORT=3030 react-scripts start",
"start:prod": "cross-env PORT=3030 REACT_APP_ENV=prod react-scripts start",
"start:dev": "cross-env PORT=3030 REACT_APP_ENV=dev react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"predeploy": "yarn build",
"deploy": "gh-pages -d build"
},
"dependencies": {
"@emotion/react": "^11.5.0",
"@emotion/styled": "^11.3.0",
"@mui/icons-material": "^5.0.5",
"@mui/material": "^5.0.6",
"@testing-library/jest-dom": "^5.15.0",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.6",
"@types/react": "^17.0.34",
"@types/react-dom": "^17.0.11",
"axios": "^0.24.0",
"formik": "^2.2.9",
"history": "^5.1.0",
"query-string": "^7.0.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router": "^6.0.0",
"react-router-dom": "^6.0.0",
"react-scripts": "4.0.3",
"typescript": "~4.4.4",
"yup": "^0.32.11"
},
"devDependencies": {
"@types/query-string": "^6.3.0",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/eslint-plugin-tslint": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"cross-env": "^7.0.3",
"eslint-config-airbnb": "18.2.1",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-typescript": "2.5.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^25.2.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.1.1",
"eslint-plugin-sonarjs": "^0.10.0",
"prettier": "^2.4.1",
"react-hot-loader": "^4.13.0"
},
"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"
]
}
}