forked from inkfoundation/ink-web-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.99 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.99 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
{
"name": "ink-web-app",
"private": true,
"scripts": {
"dev": "next dev --turbo",
"dev:https": "next dev --turbo --experimental-https",
"build": "NODE_OPTIONS='--max_old_space_size=8192' next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --write \"**/*.{ts,tsx,md,mdx,css,scss}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,md,mdx,css,scss}\"",
"test": "playwright test",
"fix:all": "pnpm run lint:fix && pnpm run format",
"generate:featured-apps": "node scripts/featured-apps.js"
},
"dependencies": {
"@hookform/resolvers": "3.9.1",
"@inkonchain/ink-kit": "0.9.1-beta.19",
"@next/third-parties": "15.1.6",
"@octokit/auth-app": "7.1.3",
"@octokit/rest": "21.0.2",
"@radix-ui/react-tooltip": "1.1.8",
"@rainbow-me/rainbowkit": "2.2.8",
"@react-three/drei": "9.107.2",
"@react-three/fiber": "9.0.0-rc.0",
"@react-three/postprocessing": "2.16.2",
"@reservoir0x/relay-kit-hooks": "1.12.0",
"@reservoir0x/relay-kit-ui": "2.17.2",
"@reservoir0x/relay-sdk": "2.4.0",
"@segment/analytics-next": "1.70.0",
"@sentry/nextjs": "8.54.0",
"@slack/web-api": "7.8.0",
"@t3-oss/env-nextjs": "0.12.0",
"@tanstack/react-query": "5.60.6",
"@types/react": "19.0.7",
"@types/react-dom": "19.0.3",
"@types/three": "0.170.0",
"@walletconnect/ethereum-provider": "2.21.4",
"class-variance-authority": "0.7.1",
"cookies-next": "4.2.1",
"ethers": "6.13.1",
"framer-motion": "12.0.0-alpha.1",
"isomorphic-dompurify": "2.21.0",
"jose": "5.9.6",
"leva": "0.9.35",
"lottie-react": "2.4.0",
"maath": "0.10.7",
"next": "15.4.7",
"next-intl": "3.25.1",
"next-themes": "0.3.0",
"postprocessing": "6.35.5",
"react": "19.0.0",
"react-confetti": "6.1.0",
"react-dom": "19.0.0",
"react-focus-lock": "2.13.2",
"react-hook-form": "7.54.1",
"react-toastify": "10.0.5",
"sass": "1.77.6",
"sharp": "0.33.4",
"three": "0.165.0",
"viem": "2.37.5",
"wagmi": "2.17.5",
"zod": "3.24.1"
},
"devDependencies": {
"@playwright/test": "1.45.0",
"@tailwindcss/postcss": "4.0.8",
"@types/node": "22",
"@typescript-eslint/eslint-plugin": "8.23.0",
"@typescript-eslint/parser": "8.23.0",
"clsx": "2.1.1",
"dotenv": "16.4.5",
"eslint": "9.14.0",
"eslint-config-next": "15.0.3",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-simple-import-sort": "12.1.0",
"eslint-plugin-svg-jsx": "1.2.4",
"eslint-plugin-unused-imports": "4.1.4",
"pino-pretty": "11.2.1",
"postcss": "8",
"prettier": "3.3.3",
"schema-dts": "1.1.2",
"tailwind-merge": "3.0.2",
"tailwindcss": "4.0.8",
"typescript": "5.7.3"
},
"packageManager": "pnpm@9.12.1",
"pnpm": {
"overrides": {
"@types/react": "19.0.7",
"@types/react-dom": "19.0.3",
"react": "19.0.0",
"react-dom": "19.0.0"
}
}
}