-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·115 lines (115 loc) · 3.58 KB
/
package.json
File metadata and controls
executable file
·115 lines (115 loc) · 3.58 KB
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
{
"name": "hamsterbase-tasks",
"private": true,
"version": "99.99.99",
"type": "module",
"author": {
"email": "support@hamsterbase.com",
"name": "Hamsterbase Team"
},
"scripts": {
"build:coverage": "tsc -b && VITE_COVERAGE=true vite build",
"lint": "eslint src --no-warn-ignored",
"check": "tsc -b && npm run lint",
"test:ui-pc": "npm --prefix ../packages/ui-pc run check",
"format": "prettier -w src",
"debug:start-server": "tsx scripts/tasks.ts debugServer",
"web:dev": "tsx scripts/tasks.ts webDev",
"web:build": "tsx scripts/tasks.ts webBuild",
"electron:dev": "tsx scripts/tasks.ts electronDev",
"electron:build": "tsx scripts/tasks.ts electronBuild",
"electron:pack": "tsx scripts/tasks.ts electronPack",
"docker:build": "tsx scripts/tasks.ts dockerBuild"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"pre-push": "npm run check"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"license": "AGPL-3.0-only",
"devDependencies": {
"@capacitor/android": "^7.1.0",
"@capacitor/app": "^7.0.0",
"@capacitor/assets": "^3.0.5",
"@capacitor/cli": "^7.0.1",
"@capacitor/core": "^7.1.0",
"@capacitor/filesystem": "^7.0.0",
"@capacitor/ios": "^7.1.0",
"@capacitor/keyboard": "^7.0.0",
"@capacitor/local-notifications": "^7.0.3",
"@capacitor/preferences": "^7.0.0",
"@capacitor/share": "^7.0.0",
"@capacitor/status-bar": "^7.0.0",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@electron/notarize": "^3.0.1",
"@eslint/js": "^9.17.0",
"@revenuecat/purchases-capacitor": "^10.2.1",
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-commonjs": "^28.0.6",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-typescript": "^12.1.4",
"@tailwindcss/postcss": "^4.0.13",
"@types/crypto-js": "^4.2.2",
"@types/estree": "^1.0.6",
"@types/express": "^5.0.0",
"@types/node": "^22.13.1",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/react-window": "^1.8.8",
"@types/test-exclude": "^6.0.2",
"@vitejs/plugin-react": "^4.3.4",
"allotment": "^1.20.3",
"cac": "^6.7.14",
"capacitor-plugin-safe-area": "^4.0.0",
"classnames": "^2.5.1",
"crypto-js": "^4.2.0",
"date-fns": "^4.1.0",
"electron": "^37.2.3",
"electron-builder": "^26.0.12",
"eslint": "^9.17.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.16",
"espree": "^10.3.0",
"express": "^5.1.0",
"globals": "^15.14.0",
"istanbul-lib-instrument": "^6.0.3",
"large-small-dynamic-viewport-units-polyfill": "^0.1.1",
"lint-staged": "^16.1.2",
"loro-crdt": "^1.8.3",
"lucide-react": "0.577.0",
"minimatch": "^10.0.1",
"nanoid": "^5.1.5",
"openai": "^6.15.0",
"postcss": "^8.5.3",
"prettier": "^3.4.2",
"rc-textarea": "^1.9.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^10.1.0",
"react-router": "^7.1.3",
"react-window": "^1.8.11",
"rollup": "^4.45.1",
"rollup-plugin-esbuild": "^6.2.1",
"rxjs": "^7.8.2",
"simple-git-hooks": "^2.11.1",
"source-map": "^0.7.4",
"swr": "^2.3.2",
"tailwindcss": "^4.1.3",
"tsx": "^4.20.3",
"typescript": "~5.6.2",
"typescript-eslint": "^8.18.2",
"vite": "^6.0.5",
"vite-plugin-top-level-await": "^1.5.0",
"vite-plugin-wasm": "^3.4.1",
"zod": "^4.3.5"
},
"packageManager": "pnpm@10.15.0"
}