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
61 lines (61 loc) · 1.46 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.46 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
{
"name": "nextjs-anchor",
"description": "Next.js, Tailwind, @solana/react-hooks, Anchor vault program",
"keywords": [
"anchor",
"kit",
"nextjs",
"react",
"solana-kit",
"tailwind",
"typescript"
],
"create-solana-dapp": {
"rename": {
"scaffold": {
"to": "{{name}}",
"paths": [
"app"
]
}
}
},
"version": "0.0.0",
"private": true,
"scripts": {
"anchor-build": "cd anchor && anchor build",
"anchor-test": "cd anchor && anchor test --skip-deploy",
"build": "next build",
"ci": "npm run build && npm run lint && npm run format:check",
"codama:js": "codama run js",
"dev": "next dev",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint",
"setup": "npm run anchor-build && npm run codama:js",
"start": "next start"
},
"dependencies": {
"@solana/client": "^1.2.0",
"@solana/kit": "^5.1.0",
"@solana/react-hooks": "^1.1.5",
"next": "16.0.10",
"react": "19.2.3",
"react-dom": "19.2.3",
"ws": "^8.18.3"
},
"devDependencies": {
"@codama/nodes-from-anchor": "^1.3.8",
"@codama/renderers-js": "^1.5.5",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"codama": "^1.5.0",
"eslint": "^9",
"eslint-config-next": "16.0.10",
"prettier": "^3.6.2",
"tailwindcss": "^4",
"typescript": "^5"
}
}