-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
101 lines (101 loc) · 2.93 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "onit",
"version": "0.1.2",
"private": true,
"dependencies": {
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@fullcalendar/daygrid": "^5.11.5",
"@fullcalendar/list": "^5.11.5",
"@fullcalendar/react": "^5.11.5",
"@mui/icons-material": "^5.15.4",
"@mui/material": "^5.15.4",
"@mui/styled-engine-sc": "^5.14.12",
"firebase": "^10.7.2",
"firebaseui": "^4.8.1",
"react": "^18.2.0",
"react-datepicker": "^4.25.0",
"react-dom": "^18.2.0",
"react-modal": "^3.16.1",
"react-phone-number-input": "^3.3.9",
"react-router-dom": "^5.3.4",
"react-scripts": "^5.0.1",
"react-switch": "^6.1.0",
"react-table": "^7.8.0",
"styled-components": "^5.3.11",
"validator": "^13.11.0",
"web-vitals": "^1.1.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.8.3",
"@types/jest": "^26.0.24",
"@types/node": "^15.14.9",
"@types/react": "^17.0.75",
"@types/react-dom": "^17.0.25",
"@types/react-phone-number-input": "^3.0.17",
"@types/react-router-dom": "^5.3.3",
"@types/styled-components": "^5.1.34",
"@types/validator": "^13.11.8",
"concurrently": "^6.5.1",
"eslint-config-prettier": "^8.10.0",
"prettier": "2.6.2",
"typescript": "^4.9.5"
},
"scripts": {
"start": "GENERATE_SOURCEMAP=false react-scripts start",
"build": "react-scripts build",
"build-all": "cd functions && npm run build && cd .. && npm run build",
"dev": "concurrently 'npm start' 'cd functions && npm run watch' 'cd functions && npm run serve'",
"lint": "eslint --ext .js,.ts,.tsx .",
"serve": "npm run build-all && firebase emulators:start",
"get-keys": "export GOOGLE_APPLICATION_CREDENTIALS='/Users/lucas/Downloads/onit-keys.json'",
"deploy": "npm run build && firebase deploy --only hosting:onit-main",
"deploy-all": "npm run build && firebase deploy",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest",
"eslint:recommended",
"plugin:import/errors",
"plugin:import/warnings",
"plugin:import/typescript",
"plugin:@typescript-eslint/recommended"
],
"ignorePatterns": [
"/build/**/*",
"/functions/lib/**/*"
],
"rules": {
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/explicit-module-boundary-types": [
"off",
{
"allowArgumentsExplicitlyTypedAsAny": true
}
],
"import/no-duplicates": [
"off",
{
"considerQueryString": true
}
]
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}