-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 3.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "Palletone",
"productName": "Palletone",
"description": "Color palette creator and picker app",
"private": true,
"version": "1.1.0",
"url": "palletone-demo.vercel.app",
"website_name": "palletone-app",
"author": {
"name": "Kain Nhantumbo",
"email": "nhantumbok@gmail.com",
"portfolio": "https://codenut-dev.vercel.app",
"github": "https://github.com/KainNhantumbo",
"linkedin": "https://www.linkedin.com/in/kain-nhantumbo?locale=en_US",
"donate": "https://www.buymeacoffee.com/nhantumbokU"
},
"metadata": {
"name": "Palletone",
"copyright_notice": "© 2023 Palletone | All Rights Reserved."
},
"keywords": [
"palette",
"color generator",
"color palette",
"palletone",
"react",
"electron"
],
"license": "Apache License Version 2.0",
"repository": "https://github.com/KainNhantumbo/palletone-app.git",
"main": "dist-electron/main.js",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"electron:build": "tsc && vite build && electron-builder",
"format": "npx prettier --write \"**/*.{js,cjs,md,ts,jsx,tsx,json}\"",
"ts:lint": "tsc --noEmit -p ./tsconfig.json",
"es:lint": "eslint . --ext ts,tsx --max-warnings 0"
},
"dependencies": {
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-tooltip": "^1.0.7",
"@tanstack/react-table": "^8.11.4",
"@uidotdev/usehooks": "^2.4.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"electron-squirrel-startup": "^1.0.0",
"extract-colors": "^4.0.2",
"framer-motion": "^10.16.4",
"lodash.isequal": "^4.5.0",
"lucide-react": "^0.306.0",
"moment": "^2.29.4",
"nanoid": "^5.0.4",
"next-themes": "^0.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-dropzone": "^14.2.3",
"react-image-color-picker": "^1.3.4",
"react-router-dom": "^6.17.0",
"react-spinners": "^0.13.8",
"sonner": "^1.4.41",
"tailwind-merge": "^2.2.0",
"tailwindcss-animate": "^1.0.7",
"tinycolor2": "^1.6.0"
},
"devDependencies": {
"@types/lodash.isequal": "^4.5.8",
"@types/react": "^18.2.47",
"@types/react-dom": "^18.2.18",
"@types/tinycolor2": "^1.4.6",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"@vitejs/plugin-react-swc": "^3.5.0",
"autoprefixer": "^10.4.16",
"electron": "^28.1.3",
"electron-builder": "^24.9.1",
"eslint": "^8.45.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"postcss": "^8.4.32",
"prettier": "^3.2.2",
"prettier-plugin-tailwindcss": "^0.5.11",
"tailwindcss": "^3.4.1",
"tree-kill": "^1.2.2",
"typescript": "^5.3.3",
"vite": "^4.5.5",
"vite-plugin-electron": "^0.15.6",
"vite-plugin-electron-renderer": "^0.14.5",
"vite-plugin-pwa": "^0.17.4",
"vite-tsconfig-paths": "^4.2.1",
"workbox-window": "^7.0.0"
}
}