-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
122 lines (122 loc) · 3.83 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "gt-scheduler",
"version": "0.2.0",
"private": true,
"homepage": "https://gt-scheduler.org/",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.2.1",
"@fortawesome/free-brands-svg-icons": "^6.2.1",
"@fortawesome/free-solid-svg-icons": "^6.2.1",
"@fortawesome/react-fontawesome": "^0.2.0",
"@sentry/react": "^6.12.0",
"@sentry/tracing": "^6.12.0",
"@types/lodash": "^4.14.192",
"@types/react-map-gl": "^6.1.3",
"axios": "^0.21.4",
"cheerio": "^1.0.0-rc.3",
"copy-to-clipboard": "^3.3.1",
"dom-to-image": "^2.6.0",
"exponential-backoff": "^3.1.0",
"fast-safe-stringify": "^2.1.0",
"file-saver": "^2.0.2",
"firebase": "^8",
"firebaseui": "^5.0.0",
"html-entities": "^2.3.3",
"immer": "^9.0.6",
"js-cookie": "^3.0.1",
"lodash": "^4.17.21",
"mapbox-gl": "^2.4.1",
"node-sass": "^6.0.1",
"normalize.css": "^8.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-firebaseui": "^5.0.2",
"react-map-gl": "5.2.11",
"react-overlays": "^5.1.1",
"react-resize-panel": "^0.3.5",
"react-router-dom": "^6.17.0",
"react-scripts": "5.0.1",
"react-tooltip": "^5.5.1",
"react-transition-group": "^4.4.2",
"react-virtualized": "^9.21.2",
"s-ago": "^2.2.0",
"tslib": "2.3.0",
"use-local-storage-state": "^18.1.2",
"uuid": "^9.0.0"
},
"devDependencies": {
"@bitwarden/cli": "^2022.8.0",
"@testing-library/react": "^13.4.0",
"@types/cheerio": "^0.22.30",
"@types/dom-to-image": "^2.6.2",
"@types/file-saver": "^2.0.1",
"@types/jest": "^29.2.5",
"@types/js-cookie": "^3.0.2",
"@types/node": "^18.11.18",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@types/react-transition-group": "^4.4.4",
"@types/react-virtualized": "^9.21.13",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.48.2",
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.2",
"eslint": "^8.32.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.1",
"eslint-plugin-react-hooks": "^4.6.0",
"fx": "^20.0.0",
"husky": "^4.3.0",
"lint-staged": "^11.1.2",
"prettier": "^2.3.2",
"typescript": "^4.4"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"lint": "eslint \"**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "eslint \"**/*.{js,jsx,ts,tsx}\" --fix",
"format": "prettier \"**/*.{js,jsx,ts,tsx,json}\" --write",
"format:check": "prettier \"**/*.{js,jsx,ts,tsx,json}\" -l",
"secrets:linux": "echo Enter Bitwarden Password: && read BW_PASSWORD && (bw logout || exit 0) && export BW_SESSION=`bw login [email protected] $BW_PASSWORD --raw` && npm run secrets:get",
"secrets:windows": "set /p BW_PASSWORD=Enter Bitwarden Password:&& (bw logout || VER>NUL) && npm run secrets:login",
"secrets:login": "FOR /F %a IN ('bw login [email protected] %BW_PASSWORD% --raw') DO SET BW_SESSION=%a && npm run secrets:get",
"secrets:get": "bw sync && bw get item gt-scheduler/website/.env.development.local | fx .notes > \".env\""
},
"eslintConfig": {
"extends": "react-app"
},
"browserslist": [
">0.2%",
"not dead",
"not ie <= 11",
"not op_mini all"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint"
],
"*.{js,jsx,ts,tsx,json}": [
"prettier --write"
]
},
"jest": {
"restoreMocks": true,
"clearMocks": true,
"resetMocks": true
},
"resolutions": {
"@firebase/**/tslib": "2.3.0"
}
}