-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.22 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.22 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
{
"name": "penncourseplan",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "export NODE_OPTIONS=--openssl-legacy-provider && node server.js",
"build": "NODE_OPTIONS=--openssl-legacy-provider next build",
"start": "NODE_OPTIONS=--openssl-legacy-provider NODE_ENV=production node server.js",
"test": "echo no tests yet",
"codecov": "echo no codecov",
"lint": "eslint . && tsc --noemit",
"lint-fix": "eslint . --fix",
"precommit": "lint-staged"
},
"dependencies": {
"@material-ui/core": "^4.5.2",
"@sentry/browser": "^5.19.2",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@types/react-swipeable-views": "^0.13.0",
"@typescript-eslint/parser": "^4.7.0",
"awesome-debounce-promise": "^2.1.0",
"bulma": "^0.7.5",
"bulma-extensions": "^6.2.7",
"bulma-popover": "^1.0.0",
"cross-fetch": "^3.0.4",
"express": "^4.17.1",
"http-proxy-middleware": "^1.0.4",
"ics": "^2.37.0",
"leaflet": "^1.9.4",
"libphonenumber-js": "^1.10.57",
"mapbox-gl": "^3.18.1",
"next": "13.2.1",
"next-transpile-modules": "^3.3.0",
"pcx-shared-components": "0.1.0",
"polished": "^3.6.6",
"prop-types": "^15.7.2",
"rc-slider": "^10.5.0",
"react": "^18.2.0",
"react-circular-progressbar": "^2.0.3",
"react-device-detect": "^1.9.10",
"react-dom": "^18.2.0",
"react-ga": "^2.7.0",
"react-hook-form": "^7.51.1",
"react-leaflet": "^4.2.1",
"react-map-gl": "^8.1.0",
"react-redux": "^7.2.9",
"react-spring": "^8.0.27",
"react-swipeable-views": "^0.13.3",
"react-toastify": "9.0.3",
"react-truncate-markup": "^4.1.0",
"redux": "^4.0.4",
"redux-thunk": "^2.3.0",
"scroll-into-view-if-needed": "^2.2.22",
"styled-components": "^6.1.8",
"typescript": "^5.6.3"
},
"devDependencies": {
"@types/leaflet": "^1.9.14",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-flowtype": "^4.7.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.16.0",
"lint-staged": "^10.2.2",
"prettier": "^2.0.5",
"redux-logger": "^3.0.6"
}
}