-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.85 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
{
"name": "emt-desktop",
"license": "BSD-3-Clause",
"version": "0.1.0",
"description": "React desktop frontend for Nashoba EMS Scheduler",
"author": "Jeff Taylor-Chang & Matt Taylor-Chang",
"dependencies": {
"@date-io/moment": "1.x",
"@material-ui/core": "^4.9.0",
"@material-ui/icons": "^4.5.1",
"@material-ui/pickers": "^3.2.10",
"moment": "^2.29.0",
"react": "^17.0.1",
"react-beautiful-dnd": "^13.0.0",
"react-big-calendar": "^0.33.2",
"react-dom": "^17.0.1",
"react-redux": "^7.1.3",
"react-router-dom": "^5.1.2",
"react-scripts": "4.0.1",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0",
"typescript": "^4.0.3",
"web-vitals": "^0.2.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"predeploy": "yarn build",
"deploy": "netlify deploy --prod",
"test": "react-scripts test",
"format": "prettier --config .prettierrc --write \"**/*.{ts,js,tsx,css,html,md}\"",
"eslint": "eslint --config ./.eslintrc.json --ext .js,.ts,.jsx,.tsx src/",
"validate": "npx tsc --noEmit"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/node": "^12.0.0",
"@types/react": "^17.0.0",
"@types/react-beautiful-dnd": "^13.0.0",
"@types/react-big-calendar": "^0.30.1",
"@types/react-dom": "^17.0.0",
"@types/react-redux": "^7.1.4",
"@types/react-router": "^5.1.2",
"@types/react-router-dom": "^5.1.2",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.0.5"
}
}