-
Notifications
You must be signed in to change notification settings - Fork 37
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.66 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.66 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
{
"name": "nebula-trends",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"fetchdata": "ts-node -O \"{\\\"module\\\":\\\"commonjs\\\"}\" src/scripts/fetchAggregatedData.ts",
"buildautocomplete": "ts-node -O \"{\\\"module\\\":\\\"commonjs\\\"}\" src/scripts/generateAutocompleteGraph.ts",
"buildcoursenames": "ts-node -O \"{\\\"module\\\":\\\"commonjs\\\"}\" src/scripts/generateCourseNameTable.ts",
"buildcombos": "ts-node -O \"{\\\"module\\\":\\\"commonjs\\\"}\" src/scripts/generateCombosTable.ts",
"start": "next start",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint --fix .",
"lint:check": "eslint .",
"docs": "styleguidist server",
"docs:build": "styleguidist build",
"test": "jest",
"type:check": "next typegen && tsc --noEmit"
},
"engines": {
"node": "22.x"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@google/genai": "^2.9.0",
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
"@mui/icons-material": "^9.1.1",
"@mui/material": "^9.1.1",
"@mui/material-nextjs": "^9.1.1",
"@next/third-parties": "^16.2.9",
"@sentry/nextjs": "^10.59.0",
"@tanstack/react-query": "^5.101.0",
"@tanstack/react-query-devtools": "^5.101.0",
"apexcharts": "^5.15.2",
"autosuggest-highlight": "^3.3.4",
"framer-motion": "^12.40.0",
"google-auth-library": "^10.7.0",
"graphology": "^0.26.0",
"html2canvas-pro": "^2.0.4",
"next": "^16.2.9",
"react": "^19.2.7",
"react-apexcharts": "^2.1.1",
"react-dom": "^19.2.7",
"react-resizable-panels": "^4.11.2",
"sharp": "^0.35.2",
"UTD-Trends-docs": "file:docs"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.3.1",
"@tanstack/eslint-plugin-query": "^5.101.0",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/autosuggest-highlight": "^3.2.0",
"@types/jest": "^30.0.0",
"@types/node": "^26.0.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.61.1",
"@typescript-eslint/parser": "^8.61.1",
"dotenv": "^17.4.2",
"eslint": "^9.39.2",
"eslint-config-next": "^16.2.9",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.1.1",
"jest": "^30.4.2",
"jest-environment-jsdom": "^30.4.1",
"node-fetch": "^3.3.1",
"prettier": "^3.8.4",
"tailwindcss": "^4.3.1",
"ts-node": "^10.9.2",
"typescript": "^6.0.3"
}
}