forked from solana-foundation/templates
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.2 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.2 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
{
"name": "lazorkit-starter-next",
"displayName": "LazorKit Starter (Next.js)",
"description": "Next.js template with LazorKit passkey wallet integration for Solana",
"usecase": "Starter",
"keywords": [
"solana",
"lazorkit",
"passkey",
"smart-wallet",
"nextjs",
"react",
"typescript",
"tailwind"
],
"create-solana-dapp": {
"instructions": [
"Install dependencies:",
"+{pm} install",
"Copy .env.example to .env.local and configure:",
"+cp .env.example .env.local",
"Start the development server:",
"+{pm} dev"
]
},
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@lazorkit/wallet": "^2.0.1",
"@solana/web3.js": "^1.98.4",
"next": "^15.3.3",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.18",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "^15.3.3",
"postcss": "^8",
"tailwindcss": "^4.0.0",
"typescript": "^5"
}
}