-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
46 lines (46 loc) · 1.22 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
{
"name": "lukso-dapp-boilerplate",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"pages:build": "next-on-pages",
"pages:deploy": "wrangler pages publish .vercel/output/static",
"pages:watch": "next-on-pages --watch",
"pages:dev": "wrangler pages dev .vercel/output/static"
},
"dependencies": {
"@cloudflare/next-on-pages": "^1.11.1",
"@erc725/erc725.js": "^0.26.0",
"@lukso/lsp-smart-contracts": "^0.15.0",
"@lukso/web3-onboard-config": "^1.1.2",
"@web3-onboard/core": "^2.21.2",
"@web3-onboard/injected-wallets": "^2.10.11",
"@web3modal/ethers": "^4.1.11",
"ethereum-blockies-base64": "^1.0.2",
"ethers": "^6.11.1",
"next": "14.1.0",
"react": "^18",
"react-dom": "^18",
"siwe": "^2.1.4"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.0.2",
"postcss": "^8",
"prettier": "^3.1.0",
"tailwindcss": "^3.3.0",
"typescript": "^5",
"vercel": "^34.1.2"
},
"engines": {
"node": ">=20.0.0"
}
}