This repository was archived by the owner on Mar 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.17 KB
/
package.json
File metadata and controls
82 lines (82 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
76
77
78
79
80
81
82
{
"name": "semester-organizer-frontend",
"version": "0.1.0",
"private": true,
"dependencies": {
"@date-io/date-fns": "1.3.11",
"@material-ui/core": "^4.9.14",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.53",
"@material-ui/pickers": "^3.2.10",
"axios": "^0.21.1",
"date-fns": "2.11.1",
"formik": "^2.1.4",
"http-proxy-middleware": "^1.0.3",
"material-table": "^1.60.0",
"material-ui-chip-input": "^1.1.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"react-scripts": "3.4.1",
"styled-components": "^5.1.0",
"typewriter-effect": "^2.13.1",
"yup": "^0.28.5"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.5.0",
"@testing-library/react": "^10.0.4",
"@testing-library/user-event": "^10.1.0",
"@types/jest": "^25.2.1",
"@types/node": "^13.13.4",
"@types/react": "^16.9.34",
"@types/react-dom": "^16.9.7",
"@types/react-router-dom": "^5.1.5",
"@types/styled-components": "^5.1.0",
"@types/yup": "^0.28.3",
"@typescript-eslint/eslint-plugin": "^3.0.1",
"cross-env": "^7.0.2",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.20.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.2",
"prettier": "^2.0.5",
"typescript": "~3.8.3"
},
"scripts": {
"start": "cross-env PORT=3001 react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint \"src/**/*.{ts,tsx}\" --quiet",
"format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,html,css,json}\""
},
"eslintConfig": {
"extends": "react-app"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"npm run lint",
"npm run format"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}