-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
76 lines (76 loc) · 2.18 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
{
"name": "humble-steam-sync",
"version": "3.1",
"description": "Show your library and wishlist games from Steam on Humble Bundle pages.",
"author": "Haaxor1689",
"license": "MIT",
"private": true,
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build && node post-build.js",
"build:chrome": "vite build",
"api:install": "cd ./edge && pnpm i",
"api:dev": "vercel dev",
"db:push": "drizzle-kit push:sqlite",
"db:studio": "drizzle-kit studio"
},
"dependencies": {
"@tanstack/react-query": "^4.36.1",
"classnames": "^2.3.2",
"lodash-es": "^4.17.21",
"lucide-react": "^0.220.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"vite": "^4.5.0"
},
"devDependencies": {
"@crxjs/vite-plugin": "2.0.0-beta.28",
"@haaxor1689/eslint-config": "^3.0.0",
"@haaxor1689/prettier-config": "^3.0.0",
"@libsql/client": "^0.6.0",
"@tailwindcss/nesting": "0.0.0-insiders.565cd3e",
"@types/chrome": "^0.0.222",
"@types/eslint": "^8.56.9",
"@types/fs-extra": "^11.0.4",
"@types/lodash-es": "^4.17.11",
"@types/node": "^20.9.0",
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@types/webextension-polyfill": "^0.10.6",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitejs/plugin-react": "^3.1.0",
"archiver": "^5.3.2",
"autoprefixer": "^10.4.16",
"drizzle-kit": "^0.20.14",
"drizzle-orm": "^0.30.8",
"eslint": "^8.57.0",
"eslint-config-next": "^13.5.6",
"eslint-config-prettier": "^8.10.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.34.1",
"fs-extra": "^11.1.1",
"postcss": "^8.4.31",
"postcss-nested": "^6.0.1",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.2.8",
"tailwindcss": "^3.3.5",
"typescript": "^5.2.2",
"vite": "^4.1.0",
"webextension-polyfill": "^0.10.0",
"zod": "^3.22.4"
},
"packageManager": "[email protected]",
"eslintConfig": {
"extends": "@haaxor1689/eslint-config",
"rules": {
"@next/next/no-img-element": "off"
}
},
"prettier": "@haaxor1689/prettier-config"
}