-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
97 lines (97 loc) · 2.83 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
{
"name": "compresso",
"version": "1.2.0",
"private": true,
"author": {
"name": "Code For Real",
"url": "https://www.threads.net/@codeforreal"
},
"license": "AGPL-3.0-only",
"scripts": {
"next:dev": "next dev",
"next:build": "next build",
"next:start": "next start",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"tauri:build:debug": "tauri build --debug",
"pnpm:devPreinstall": "fnm use",
"postinstall": "husky install",
"lint-staged": "lint-staged"
},
"dependencies": {
"@nextui-org/button": "^2.0.26",
"@nextui-org/checkbox": "^2.0.29",
"@nextui-org/code": "^2.0.27",
"@nextui-org/divider": "^2.0.27",
"@nextui-org/image": "^2.0.24",
"@nextui-org/link": "^2.0.26",
"@nextui-org/modal": "^2.0.33",
"@nextui-org/progress": "^2.0.28",
"@nextui-org/select": "^2.1.27",
"@nextui-org/slider": "^2.2.9",
"@nextui-org/spinner": "^2.0.28",
"@nextui-org/system": "^2.1.2",
"@nextui-org/tabs": "^2.0.29",
"@nextui-org/theme": "^2.2.3",
"@nextui-org/tooltip": "^2.0.33",
"@tauri-apps/api": ">=2.0.0-beta.0",
"@tauri-apps/plugin-dialog": "2.0.0-beta.3",
"@tauri-apps/plugin-fs": "2.0.0-beta.3",
"@tauri-apps/plugin-shell": "2.0.0-beta.3",
"clsx": "^2.0.0",
"framer-motion": "^10.16.4",
"husky": "^8.0.1",
"lodash": "^4.17.21",
"next": "14.0.2",
"next-themes": "^0.2.1",
"pretty-bytes": "^6.1.1",
"react": "^18",
"react-dom": "^18",
"sonner": "^1.4.41",
"tailwind-merge": "^1.14.0",
"valtio": "^1.13.2",
"vaul": "^0.9.1"
},
"devDependencies": {
"@next/bundle-analyzer": "^14.0.3",
"@next/eslint-plugin-next": "^12.1.0",
"@svgr/webpack": "^8.1.0",
"@tauri-apps/cli": ">=2.0.0-beta.0",
"@types/lodash": "^4.17.4",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"autoprefixer": "^10.4.16",
"eslint": "8.9.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-next": "^14.1.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"lint-staged": "^13.2.3",
"postcss": "^8.4.31",
"prettier": "^3.2.5",
"tailwindcss": "^3.4.0",
"typescript": "^5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,ts,jsx,tsx}": [
"eslint --fix",
"prettier --write"
]
}
}