This repository was archived by the owner on Jan 9, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.46 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.46 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
83
{
"name": "usc-website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "cross-env NODE_TLS_REJECT_UNAUTHORIZED=0 next dev -p 3001",
"build": "next build",
"start": "next start -p 3001",
"linter-eslint": "npx eslint .",
"linter-next": "next lint",
"linter-prettier": "prettier --write \"./**/*.{css,html,js,json,jsx,md,sass,scss,ts,tsx,vue,yaml,yml}\" --config ./.prettierrc",
"test": "jest --watch",
"test:ci": "jest --ci"
},
"dependencies": {
"@chakra-ui/icons": "2.0.13",
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.0",
"@fontsource/do-hyeon": "^4.5.10",
"@fontsource/domine": "^4.5.10",
"@fontsource/inter": "^4.5.15",
"@testing-library/user-event": "^14.5.2",
"date-fns": "^2.30.0",
"embla-carousel-react": "^8.0.0",
"formik": "^2.4.5",
"framer-motion": "^11.0.15",
"leaflet": "^1.9.4",
"leaflet-defaulticon-compatibility": "^0.1.2",
"next": "^14.1.3",
"next-cloudinary": "^6.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^5.0.1",
"react-leaflet": "^4.2.1",
"react-markdown": "^9.0.1",
"react-select": "^5.8.0",
"sharp": "^0.32.6",
"styled-components": "^5.3.11",
"styled-system": "^5.1.5",
"swr": "^2.2.5",
"web-vitals": "^3.5.2",
"yup": "^1.4.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.2",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/enzyme": "^3.10.18",
"@types/leaflet": "^1.9.8",
"@types/node": "18.11.10",
"@types/react": "^18.2.67",
"@types/react-dom": "^18.2.22",
"@types/react-test-renderer": "^16.9.12",
"@types/styled-components": "^5.1.34",
"@types/styled-system": "^5.1.22",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-next": "^14.1.3",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.34.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^2.8.8",
"typescript": "^4.9.5"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}