-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.92 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.92 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
{
"name": "@upstash/react-redis-browser",
"version": "0.0.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"license": "MIT",
"private": false,
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git@github.com:upstash/react-redis-browser.git"
},
"bugs": {
"url": "https://github.com/upstash/react-redis-browser/issues"
},
"homepage": "https://github.com/upstash/react-redis-browser",
"files": [
"./dist/**"
],
"scripts": {
"build": "tsup",
"dev": "vite",
"lint": "tsc && eslint",
"fmt": "prettier --write ./src",
"test": "bun test src",
"test:e2e": "playwright test",
"prepare": "husky"
},
"lint-staged": {
"**/*.{js,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@ianvs/prettier-plugin-sort-imports": "^4.7.1",
"@monaco-editor/react": "^4.6.0",
"@radix-ui/react-context-menu": "^2.2.16",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-portal": "^1.1.10",
"@radix-ui/react-progress": "^1.1.8",
"@radix-ui/react-scroll-area": "^1.2.10",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-toast": "^1.2.15",
"@radix-ui/react-tooltip": "^1.2.8",
"@tabler/icons-react": "^3.19.0",
"@tanstack/react-query": "^5.32.0",
"@types/bytes": "^3.1.4",
"@upstash/redis": "1.37.0-rc.12",
"bytes": "^3.1.2",
"cmdk": "^1.1.1",
"react-hook-form": "^7.53.0",
"react-resizable-panels": "^2.1.4",
"zustand": "5.0.0"
},
"devDependencies": {
"@playwright/test": "^1.56.1",
"@types/bun": "^1.3.7",
"@types/node": "^22.8.4",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "8.4.0",
"@typescript-eslint/parser": "8.4.0",
"@vitejs/plugin-react": "^4.1.0",
"autoprefixer": "^10.4.14",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"dotenv": "^16.5.0",
"eslint": "9.10.0",
"eslint-plugin-unicorn": "55.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"postcss": "^8.4.31",
"postcss-prefix-selector": "^2.1.0",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwind-merge": "^2.5.4",
"tailwindcss": "^3.4.14",
"tailwindcss-animate": "^1.0.7",
"tsup": "^8.3.5",
"typescript": "^5.0.4",
"vite": "^5.4.10",
"vite-tsconfig-paths": "^5.0.1"
},
"peerDependencies": {
"react": "^18.2.0 || ^19",
"react-dom": "^18.2.0 || ^19"
}
}