-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.74 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.74 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
{
"name": "blocs",
"version": "0.1.0",
"private": true,
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint",
"test": "vitest",
"typecheck": "tsc --noEmit",
"prepare": "husky"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.1029.0",
"@coral-xyz/anchor": "^0.32.1",
"@privy-io/react-auth": "^3.21.3",
"@solana-program/memo": "^0.11.0",
"@solana-program/system": "^0.12.0",
"@solana-program/token": "^0.13.0",
"@solana/wallet-adapter-base": "^0.9.27",
"@solana/wallet-adapter-react": "^0.15.39",
"@solana/wallet-adapter-react-ui": "^0.9.39",
"@solana/web3.js": "^1.98.4",
"bn.js": "^5.2.3",
"lodash": "^4.18.1",
"next": "^16.2.3",
"next-plausible": "^4.0.0",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-zoom-pan-pinch": "^4.0.3",
"sharp": "^0.34.5",
"sonner": "^2.0.7",
"zod": "^4.3.6"
},
"devDependencies": {
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/jest": "^30.0.0",
"@types/lodash": "^4.17.24",
"@types/node": "^25.6.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^6.0.1",
"eslint": "^9.39.4",
"eslint-config-next": "^16.2.3",
"husky": "^9.1.7",
"jsdom": "^29.0.2",
"lint-staged": "^16.4.0",
"typescript": "^6.0.2",
"vite": "^8.0.8",
"vitest": "^4.1.4"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"vitest related --run"
]
},
"license": "MIT",
"overrides": {
"fast-xml-parser": "^5.3.8",
"typescript": "^6.0.2",
"undici": "^7.24.2"
}
}