-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
87 lines (87 loc) · 2.45 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
{
"name": "redis-ui",
"version": "0.5.0",
"license": "MIT",
"main": "main/index.js",
"keywords": [
"vite",
"react",
"electron",
"typescript"
],
"repository": {
"url": "https://github.com/NicolasLopes7/redis-ui"
},
"productName": "redis-ui",
"scripts": {
"dev": "concurrently \"yarn dev:vite\" \" yarn dev:electron\"",
"dev:vite": "vite",
"redis:seed": "ts-node ./electron/services/redis/seed.ts",
"dev:electron": "pnpm build:electron && electron .",
"build": "pnpm build:vite && pnpm build:electron",
"build:vite": "vite build",
"build:electron": "tsc -p electron",
"dist": "pnpm build && electron-builder",
"pack": "pnpm build && electron-builder --dir",
"clean": "rimraf dist main src/out",
"type-check": "tsc",
"lint": "eslint . --ext js,jsx,ts,tsx",
"lint:fix": "eslint . --ext js,jsx,ts,tsx --fix"
},
"dependencies": {
"@hookform/resolvers": "^2.9.10",
"@radix-ui/colors": "^0.1.8",
"@radix-ui/react-dialog": "^1.0.2",
"@radix-ui/react-icons": "^1.1.1",
"@radix-ui/react-switch": "^1.0.1",
"@radix-ui/react-toast": "^1.0.0",
"@stitches/react": "^1.2.8",
"@tanstack/react-table": "^8.5.30",
"@vitejs/plugin-react": "^1.2.0",
"bluebird": "^3.7.2",
"chance": "^1.1.8",
"electron-is-dev": "^2.0.0",
"ioredis": "^5.2.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.39.3",
"react-json-view": "^1.21.3",
"react-router-dom": "^6.3.0",
"vite": "^2.8.6",
"zod": "^3.19.1"
},
"devDependencies": {
"@types/bluebird": "^3.5.36",
"@types/chance": "^1.1.3",
"@types/node": "^17.0.45",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.9",
"@typescript-eslint/eslint-plugin": "5.16.0",
"@typescript-eslint/parser": "5.16.0",
"autoprefixer": "^10.4.4",
"concurrently": "^7.0.0",
"electron": "^17.1.2",
"electron-builder": "^22.14.13",
"eslint": "8.11.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "2.6.0",
"ts-node": "^10.9.1",
"typescript": "^4.6.2"
},
"build": {
"asar": true,
"files": [
"main",
"src/out"
],
"directories": {
"buildResources": "resources"
}
}
}