-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
67 lines (67 loc) · 1.63 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
{
"name": "@rhinestone/sandbox",
"version": "0.1.0",
"description": "A frontend playground building and testing smart account modules",
"license": "GPL-3.0",
"author": {
"name": "Rhinestone",
"url": "https://rhinestone.wtf"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc"
},
"dependencies": {
"@apollo/client": "^3.8.9",
"@github/webauthn-json": "^2.1.1",
"@scure/base": "^1.1.5",
"@tanstack/react-query": "^5.17.15",
"cbor": "^9.0.1",
"classnames": "^2.5.1",
"daisyui": "^4.6.0",
"lodash": "^4.17.21",
"moment": "^2.30.1",
"next": "14.0.4",
"permissionless": "^0.1.4",
"pino-pretty": "^10.3.1",
"react": "^18",
"react-dom": "^18",
"react-icons": "^5.0.1",
"react-qr-code": "^2.0.12",
"viem": "2.7.16",
"wagmi": "2.5.7",
"connectkit": "1.7.2"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.10",
"@types/lodash": "^4.14.202",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.0.4",
"postcss": "^8",
"tailwindcss": "^3.3.0",
"typescript": "^5"
},
"homepage": "https://docs.rhinestone.wtf/sandbox",
"repository": {
"type": "git",
"url": "git+https://github.com/rhinestonewtf/sandbox.git"
},
"bugs": {
"url": "https://github.com/rhinestonewtf/sandbox/issues"
},
"keywords": [
"account abstraction",
"smart account modules",
"sandbox"
],
"publishConfig": {
"access": "public"
}
}