-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.95 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.95 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
{
"name": "npro-stake",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"typecheck": "tsc --noEmit",
"format": "prettier --write .",
"test": "vitest",
"preview": "next start -p 4000",
"security:audit": "pnpm audit --prod --audit-level=high",
"security:audit-all": "pnpm audit",
"security:check": "pnpm typecheck && pnpm lint && pnpm security:audit"
},
"dependencies": {
"@near-wallet-selector/core": "^9.5.1",
"@near-wallet-selector/here-wallet": "^9.5.1",
"@near-wallet-selector/hot-wallet": "^9.5.1",
"@near-wallet-selector/ledger": "npm:@peersyst/ws-ledger@^8.9.18",
"@near-wallet-selector/meteor-wallet": "^9.5.1",
"@near-wallet-selector/modal-ui": "^9.5.1",
"@near-wallet-selector/modal-ui-js": "^9.5.1",
"@near-wallet-selector/my-near-wallet": "^9.5.1",
"@near-wallet-selector/near-mobile-wallet": "^9.5.1",
"@peersyst/ws-ledger": "^8.9.18",
"@tanstack/react-query": "^5.28.9",
"bignumber.js": "^9.3.1",
"clsx": "^2.1.0",
"decimal.js": "^10.6.0",
"lucide-react": "^0.366.0",
"near-api-js": "^5.0.0",
"next": "15.5.9",
"react": "^18",
"react-dom": "^18",
"tailwind-merge": "^2.2.2"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react": "^5.0.2",
"autoprefixer": "^10.0.1",
"eslint": "^9.35.0",
"eslint-config-next": "15.5.3",
"jsdom": "^24.0.0",
"postcss": "^8",
"prettier": "^3.2.5",
"tailwindcss": "^3.3.0",
"typescript": "^5",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "pnpm@8.15.6",
"pnpm": {
"overrides": {
"secp256k1": "^5.0.1",
"bs58": "4.0.1",
"base-x": "3.0.11"
}
}
}