-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
128 lines (128 loc) · 3.55 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
123
124
125
126
127
128
{
"name": "UTD-Trends",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"buildautocomplete": "ts-node src/scripts/generateAutocompleteGraph.ts",
"buildcombos": "ts-node -O \"{\\\"module\\\":\\\"commonjs\\\"}\" src/scripts/generateCombosTable.ts",
"start": "next start",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "next lint --fix",
"lint:check": "next lint"
},
"engines": {
"node": "^18"
},
"dependencies": {
"@babel/runtime": "^7.17.9",
"@emotion/react": "^11.8.1",
"@emotion/styled": "^11.6.0",
"@mui/icons-material": "^6.1.2",
"@mui/material": "^6.1.2",
"@next/third-parties": "^14.2.15",
"@vercel/analytics": "^1.0.0",
"@vercel/speed-insights": "^1.0.12",
"apexcharts": "^3.33.2",
"autoprefixer": "^10.4.2",
"autosuggest-highlight": "^3.3.4",
"css-loader": "^7.1.2",
"dotenv": "^16.0.0",
"framer-motion": "^11.11.1",
"google-auth-library": "^9.4.1",
"graphology": "^0.25.1",
"html-loader": "^5.1.0",
"markdown-loader": "^8.0.0",
"next": "^14.2.14",
"node-fetch": "^3.3.1",
"postcss": "^8.4.6",
"postcss-loader": "^8.1.1",
"react": "^18.2.0",
"react-apexcharts": "^1.3.9",
"react-docgen-typescript": "^2.2.2",
"react-dom": "^18.2.0",
"sharp": "^0.33.5",
"style-loader": "^4.0.0",
"tailwindcss": "^3.0.23",
"ts-node": "^10.9.1",
"webpack": "^5.72.0"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.21.4",
"@babel/preset-react": "^7.16.7",
"@babel/preset-typescript": "^7.21.4",
"@types/autosuggest-highlight": "^3.2.0",
"@types/node": "^22.7.5",
"@types/react": "^18.2.0",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"babel-loader": "^9.1.2",
"babel-plugin-styled-components": "^2.1.1",
"babel-polyfill": "^6.26.0",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.14",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"prettier": "^3.3.3",
"react-styleguidist": "^13.1.1",
"typescript": "^5.0.4"
},
"babel": {
"presets": [
"@babel/preset-env",
"@babel/preset-react",
"@babel/preset-typescript"
],
"plugins": [
"@babel/plugin-transform-runtime",
"babel-plugin-styled-components"
]
},
"browserslist": "> 0.25%, not dead",
"eslintConfig": {
"root": true,
"extends": [
"next/core-web-vitals",
"prettier",
"plugin:jsx-a11y/recommended",
"eslint:recommended",
"plugin:react/recommended",
"plugin:react-hooks/recommended",
"plugin:@typescript-eslint/recommended"
],
"parser": "@typescript-eslint/parser",
"plugins": [
"simple-import-sort",
"@typescript-eslint"
],
"rules": {
"jsx-a11y/anchor-is-valid": [
"error",
{
"components": [
"Link"
],
"specialLink": [
"hrefLeft",
"hrefRight"
],
"aspects": [
"invalidHref",
"preferButton"
]
}
],
"simple-import-sort/imports": "error",
"simple-import-sort/exports": "error",
"import/first": "error",
"import/newline-after-import": "error",
"import/no-duplicates": "error"
}
}
}