-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 4.03 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 4.03 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
116
117
118
119
{
"name": "file-synchronizer",
"version": "2.1.2",
"description": "A cross-platform desktop application built with ElectronJS for synchronizing files to Cloud storage services.",
"keywords": [
"ElectronJS",
"ReactJS",
"TailwindCSS",
"ExpressJS",
"Google Drive API",
"Box API"
],
"homepage": "https://github.com/BaoDuong254/file-synchronizer#readme",
"bugs": {
"url": "https://github.com/BaoDuong254/file-synchronizer/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BaoDuong254/file-synchronizer.git"
},
"license": "ISC",
"author": "BaoDuong254 <duonggiabao254@gmail.com>",
"type": "module",
"main": "./out/main/index.js",
"scripts": {
"format": "prettier --write .",
"lint": "eslint --cache .",
"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": "npm run build && electron-builder --mac",
"build:linux": "npm run build && electron-builder --linux",
"prepare": "husky",
"server": "nodemon"
},
"dependencies": {
"@electron-toolkit/preload": "^3.0.1",
"@electron-toolkit/utils": "^4.0.0",
"@fontsource-variable/roboto": "^5.2.6",
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-brands-svg-icons": "^6.7.2",
"@fortawesome/free-regular-svg-icons": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@getstation/electron-google-oauth2": "^14.0.0",
"@radix-ui/react-dialog": "^1.1.14",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-slot": "^1.2.3",
"@tailwindcss/vite": "^4.1.8",
"assert-plus": "^1.0.0",
"axios": "^1.9.0",
"box-node-sdk": "^3.8.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"custom-electron-titlebar": "^4.2.8",
"date-fns": "^4.1.0",
"dotenv": "^16.5.0",
"electron-store": "^10.0.1",
"electron-updater": "^6.6.2",
"framer-motion": "^12.16.0",
"googleapis": "^150.0.1",
"keytar": "^7.9.0",
"lodash": "^4.17.21",
"lucide-react": "^0.522.0",
"react-file-icon": "^1.6.0",
"react-hook-form": "^7.57.0",
"react-router-dom": "^7.6.2",
"react-toastify": "^11.0.5",
"tailwind-merge": "^3.3.1",
"tailwindcss": "^4.1.8",
"ts-node-dev": "^2.0.0"
},
"devDependencies": {
"@electron-toolkit/eslint-config": "^2.0.0",
"@electron-toolkit/eslint-config-prettier": "^3.0.0",
"@electron-toolkit/eslint-config-ts": "^3.0.0",
"@electron-toolkit/tsconfig": "^1.0.1",
"@types/express": "^5.0.3",
"@types/mime-types": "^3.0.1",
"@types/node": "^22.14.1",
"@types/node-fetch": "^2.6.12",
"@types/react": "^19.1.1",
"@types/react-dom": "^19.1.2",
"@vitejs/plugin-react": "^4.3.4",
"cross-env": "^7.0.3",
"electron": "^35.1.5",
"electron-builder": "^25.1.8",
"electron-builder-sandbox-fix": "^1.1.0",
"electron-vite": "^3.1.0",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.4.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"husky": "^9.1.7",
"lint-staged": "^16.1.0",
"nodemon": "^3.1.10",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.12",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"ts-node": "^10.9.2",
"tsx": "^4.20.3",
"tw-animate-css": "^1.3.4",
"typescript": "^5.8.3",
"vite": "^6.2.6"
},
"lint-staged": {
"**/*.{js,ts,jsx,tsx}": "eslint --fix",
"**/*.{json,js,ts,jsx,tsx,md,css,scss,html,mjs}": "prettier --write"
}
}