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
57 lines (57 loc) · 1.29 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.29 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
{
"name": "react-vite",
"description": "React + Vite, Tailwind, @solana/react-hooks",
"keywords": [
"kit",
"react",
"solana-kit",
"tailwind",
"typescript",
"vite"
],
"create-solana-dapp": {
"rename": {
"scaffold": {
"to": "{{name}}",
"paths": [
"src"
]
}
}
},
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "tsc -b && vite build",
"ci": "npm run build && npm run lint && npm run format:check",
"dev": "vite",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"preview": "vite preview"
},
"dependencies": {
"@solana/client": "^1.0.0-rc.2",
"@solana/react-hooks": "^1.0.0-rc.3",
"@tailwindcss/vite": "^4",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"tailwindcss": "^4"
},
"devDependencies": {
"@eslint/js": "^9.35.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^5.0.3",
"eslint": "^9",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.4.0",
"prettier": "^3.6.2",
"typescript": "^5",
"typescript-eslint": "^8.44.0",
"vite": "^7.1.6"
}
}