-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.79 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.79 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
{
"name": "alphland",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"format": "prettier --loglevel warn --write \"**/*.{ts,tsx,css,md,json,yml,js,svg}\"",
"posttest": "npm run format",
"prepare": "husky install",
"precommit-hook": "lint-staged",
"generate-dapp-list": "node scripts/generate-dapp-list.js",
"worker:dev": "npm run generate-dapp-list && wrangler dev --port 8787",
"worker:deploy": "npm run generate-dapp-list && wrangler deploy",
"db:migrate": "wrangler d1 execute alphland-bounty --file=./migrations/001_initial_schema_fixed.sql",
"db:migrate:local": "wrangler d1 execute alphland-bounty --local --file=./migrations/001_initial_schema_fixed.sql",
"db:console": "wrangler d1 execute alphland-bounty --command",
"db:console:local": "wrangler d1 execute alphland-bounty --local --command"
},
"dependencies": {
"@alephium/web3": "^0.22.0",
"@alephium/web3-react": "^0.22.0",
"@alephium/web3-wallet": "^0.22.0",
"@radix-ui/react-checkbox": "^1.3.3",
"@radix-ui/react-slot": "^1.2.4",
"@vercel/analytics": "^1.6.0",
"better-auth": "^1.3.34",
"bignumber.js": "^9.1.1",
"bowser": "^2.11.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cookies-next": "^2.1.1",
"decap-cms-app": "^3.9.0",
"deployment-badge": "^1.1.0",
"kysely-d1": "^0.4.0",
"lodash.chunk": "^4.2.0",
"lottie-react": "^2.3.1",
"lucide-react": "^0.553.0",
"next": "^12.3.4",
"next-themes": "^0.2.0",
"react": "^18.2.0",
"react-cookie-consent": "^9.0.0",
"react-dom": "^18.2.0",
"react-toastify": "^9.1.3",
"resend": "^6.5.2",
"styled-components": "^5.3.5",
"swiper": "^8.3.2",
"tailwind-merge": "^3.4.0",
"uuid": "^13.0.0",
"zod": "^3.21.4",
"zustand": "^4.1.1"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20251119.0",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@svgr/webpack": "^6.3.1",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/lodash.chunk": "^4.2.7",
"@types/node": "18.6.4",
"@types/react": "18.0.15",
"@types/react-dom": "18.0.6",
"@types/styled-components": "^5.1.26",
"@types/uuid": "^10.0.0",
"autoprefixer": "^10.4.8",
"babel-plugin-styled-components": "^2.0.7",
"eslint": "8.21.0",
"eslint-config-next": "12.2.4",
"husky": ">=7",
"lint-staged": "12",
"postcss": "^8.4.14",
"prettier": ">=2",
"react-is": "^18.2.0",
"tailwindcss": "^3.1.7",
"typescript": "^5.9.3",
"wrangler": "^4.47.0"
},
"browser": {
"fs": false,
"path": false,
"os": false
},
"resolutions": {
"styled-components": "^5"
}
}