-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
73 lines (73 loc) · 2.16 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
{
"name": "dashboard",
"version": "0.1.1",
"private": true,
"scripts": {
"community": "ts-node -r tsconfig-paths/register -P scripts/tsconfig.json scripts/run.ts",
"dev": "next dev",
"build": "next build",
"start": "ts-node -r tsconfig-paths/register -P scripts/tsconfig.json scripts/run_local.ts",
"start:production": "next start",
"lint": "next lint",
"test": "jest"
},
"dependencies": {
"@citizenwallet/sdk": "^1.2.46",
"@pinata/sdk": "^2.1.0",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-alert-dialog": "^1.1.1",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-progress": "^1.0.3",
"@radix-ui/react-select": "^2.1.1",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/themes": "^2.0.3",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"debounce": "^2.0.0",
"docker-compose": "^0.24.7",
"dotenv": "^16.4.5",
"ethers": "^6.11.1",
"lucide-react": "^0.340.0",
"next": "^14.1.4",
"react": "^18",
"react-color": "^2.19.3",
"react-dom": "^18",
"react-qr-code": "^2.0.12",
"smartcontracts": "github:citizenwallet/smartcontracts#v0.0.110",
"sqlite3": "5.1.6",
"swr": "^2.2.5",
"tailwind-merge": "^2.2.1",
"tailwindcss-animate": "^1.0.7",
"use-debounce": "^10.0.0",
"vaul": "^0.9.0",
"zustand": "^4.5.2"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20",
"@types/qrcode-terminal": "^0.12.2",
"@types/react": "^18",
"@types/react-color": "^3.0.12",
"@types/react-dom": "^18",
"@types/sqlite3": "^3.1.11",
"@types/terminal-kit": "^2.5.6",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.1.0",
"jest": "^29.7.0",
"postcss": "^8",
"public-ip": "^6.0.2",
"qrcode-terminal": "^0.12.0",
"readline": "^1.3.0",
"tailwindcss": "^3.3.0",
"terminal-kit": "^3.1.1",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5"
}
}