-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
114 lines (114 loc) · 3.12 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
{
"name": "Skedge",
"displayName": "Skedge",
"version": "2.0.0",
"description": "your registration assistant by students, for students",
"author": "Nebula Labs",
"packageManager": "[email protected]",
"scripts": {
"dev:chrome": "plasmo dev --target=chrome-mv3",
"dev:firefox": "plasmo dev --target=firefox-mv3",
"type-check": "tsc --noEmit",
"build:chrome": "tsc --noEmit && plasmo build --target=chrome-mv3 --zip",
"build:firefox": "tsc --noEmit && plasmo build --target=firefox-mv3 --zip",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "next lint --fix",
"lint:check": "next lint"
},
"dependencies": {
"@emotion/react": "^11.13.3",
"@emotion/styled": "^11.13.0",
"@mui/icons-material": "^5.16.7",
"@mui/material": "^5.15.5",
"@plasmohq/messaging": "^0.6.2",
"@plasmohq/storage": "^1.12.0",
"@types/firefox-webext-browser": "^120.0.4",
"apexcharts": "^3.54.0",
"next": "^14.2.15",
"plasmo": "^0.89.3",
"react": "^18.3.1",
"react-apexcharts": "^1.4.0",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@types/chrome": "^0.0.277",
"@types/node": "^22.7.5",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.15",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jsx-a11y": "^6.10.0",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-simple-import-sort": "^12.1.1",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.13",
"typescript": "^5.6.3"
},
"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",
"@next/next/no-img-element": "off"
}
},
"manifest": {
"permissions": [
"storage",
"scripting",
"webNavigation",
"tabs",
"nativeMessaging"
],
"host_permissions": [
"https://utdallas.collegescheduler.com/*",
"https://www.ratemyprofessors.com/*",
"https://trends.utdnebula.com/*"
],
"browser_specific_settings": {
"gecko": {
"id": "skedge@utdnebula",
"strict_min_version": "109.0"
}
}
}
}