forked from UTDNebula/skedge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
119 lines (119 loc) · 3.03 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
{
"name": "sk.edge",
"displayName": "sk.edge",
"version": "0.0.1",
"description": "your registration assistant by students, for students",
"author": "Nebula Labs",
"packageManager": "[email protected]",
"scripts": {
"dev": "plasmo dev",
"dev:firefox": "plasmo dev --target=firefox-mv3",
"build": "plasmo build",
"package": "plasmo package",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "next lint --fix",
"lint:check": "next lint",
"prepare": "husky install"
},
"dependencies": {
"@plasmohq/messaging": "^0.1.6",
"@plasmohq/storage": "^1.3.1",
"apexcharts": "^3.37.1",
"next": "^13.1.5",
"plasmo": "^0.85.2",
"react": "18.2.0",
"react-apexcharts": "^1.4.0",
"react-dom": "18.2.0",
"react-icons": "^4.7.1",
"react-loader-spinner": "^5.3.4",
"react-router-dom": "^6.8.2"
},
"devDependencies": {
"@types/chrome": "0.0.202",
"@types/node": "18.11.9",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.9",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"autoprefixer": "^10.4.13",
"eslint": "^8.53.0",
"eslint-config-next": "^14.0.2",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^8.0.3",
"lint-staged": "^15.1.0",
"postcss": "^8.4.21",
"prettier": "2.7.1",
"tailwindcss": "^3.2.7",
"typescript": "^5.2.2"
},
"lint-staged": {
"*": [
"eslint --cache --fix",
"prettier --write ./**/*.{tsx,ts,js}"
]
},
"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"
}
},
"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"
}
}
}
}