-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.09 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
{
"name": "innohassle-browser-extension",
"displayName": "InNoHassle Tools",
"type": "module",
"version": "0.6.2",
"private": true,
"description": "Convenient tools for Moodle, InNoHassle and other services at Innopolis University.",
"scripts": {
"dev": "BROWSER=chrome vite",
"dev:firefox": "BROWSER=firefox vite",
"build:chrome": "tsc && BROWSER=chrome vite build",
"build:firefox": "tsc && BROWSER=firefox vite build",
"zip:chrome": "npm run build:chrome && BROWSER=chrome node scripts/zip.js",
"zip:firefox": "npm run build:firefox && BROWSER=firefox node scripts/zip.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:fix:generated": "eslint **/__generated__.ts --fix --no-ignore || true",
"deps": "taze -wIr",
"release": "bumpp -r package.json backend/package.json",
"prepare": "simple-git-hooks || true",
"generate-api": "orval --config orval.config.ts"
},
"dependencies": {
"@unocss/reset": "^0.61.0",
"axios": "^1.7.2",
"clsx": "^2.1.1",
"moodle-typed-ws": "^0.4.0",
"object-to-formdata": "^4.5.1",
"orval": "^6.31.0",
"p-limit": "^6.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwind-merge": "^2.3.0"
},
"devDependencies": {
"@antfu/eslint-config": "^2.21.1",
"@crxjs/vite-plugin": "^2.0.0-beta.28",
"@eslint-react/eslint-plugin": "^1.5.15",
"@iconify/json": "^2.2.219",
"@types/chrome": "^0.0.246",
"@types/react": "^18.2.28",
"@types/react-dom": "^18.2.13",
"@unocss/eslint-plugin": "^0.60.4",
"@unocss/preset-icons": "^0.61.0",
"@vitejs/plugin-react": "^4.1.0",
"bumpp": "^9.4.1",
"eslint": "8.57.0",
"eslint-plugin-react-hooks": "^4.6.2",
"eslint-plugin-react-refresh": "^0.4.7",
"gulp": "^4.0.2",
"gulp-zip": "^6.0.0",
"lint-staged": "^15.2.7",
"simple-git-hooks": "^2.11.1",
"taze": "^0.13.8",
"ts-node": "^10.9.2",
"typescript": "^5.2.2",
"unocss": "^0.61.0",
"vite": "^4.4.11"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}