-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2.27 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": "doom-librarian",
"version": "1.0.0",
"description": "An Electron application to read and manage all your books.",
"main": "./out/main/index.js",
"author": "CMOISDEAD",
"homepage": "https://github.com/CMOISDEAD/librarian",
"scripts": {
"format": "prettier --write .",
"lint": "eslint . --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "npm run typecheck:node && npm run typecheck:web",
"start": "electron-vite preview",
"dev": "electron-vite dev",
"build": "npm run typecheck && electron-vite build",
"postinstall": "electron-builder install-app-deps",
"build:unpack": "npm run build && electron-builder --dir",
"build:win": "npm run build && electron-builder --win",
"build:mac": "electron-vite build && electron-builder --mac",
"build:linux": "electron-vite build && electron-builder --linux"
},
"dependencies": {
"@electron-toolkit/preload": "^3.0.1",
"@electron-toolkit/utils": "^3.0.0",
"@nextui-org/react": "^2.4.1",
"@prisma/client": "^5.15.0",
"cmdk": "^1.0.0",
"electron-store": "^8.2.0",
"formik": "^2.4.6",
"framer-motion": "^11.2.10",
"next-themes": "^0.3.0",
"react-hook-form": "^7.51.5",
"react-hot-toast": "^2.4.1",
"react-icons": "^5.2.1",
"react-router-dom": "^6.23.1",
"uuid": "^9.0.1",
"yup": "^1.4.0",
"zustand": "^4.5.2"
},
"devDependencies": {
"@electron-toolkit/eslint-config-prettier": "^2.0.0",
"@electron-toolkit/eslint-config-ts": "^1.0.1",
"@electron-toolkit/tsconfig": "^1.0.1",
"@types/node": "^18.19.34",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/uuid": "^9.0.8",
"@vitejs/plugin-react": "^4.3.0",
"ajv": "^8.16.0",
"autoprefixer": "^10.4.19",
"electron": "^28.3.3",
"electron-builder": "^24.13.3",
"electron-vite": "^2.2.0",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.2",
"postcss": "^8.4.38",
"prettier": "^3.3.1",
"prisma": "^5.15.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwindcss": "^3.4.4",
"typescript": "^5.4.5",
"vite": "^5.2.13"
}
}