-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.77 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.77 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
{
"name": "near-treasury",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build --turbopack",
"start": "next start",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"test:e2e:headed": "playwright test --headed",
"test:e2e:report": "playwright show-report",
"test:video-merge": "node scripts/playwright-video-merger.js",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky"
},
"dependencies": {
"@builddao/near-social-js": "^1.1.0",
"@hot-labs/near-connect": "^0.6.2",
"@near-js/jsonrpc-client": "^1.4.0",
"@near-wallet-selector/core": "^9.5.4",
"@tanstack/react-query": "^5.90.2",
"big.js": "^7.0.1",
"bootstrap": "^5.3.8",
"bootstrap-icons": "^1.13.1",
"chart.js": "^4.5.0",
"js-sha256": "^0.11.1",
"lodash": "^4.17.21",
"next": "16.0.10",
"qrcode.react": "^4.2.0",
"radix-ui": "^1.4.3",
"react": "19.1.4",
"react-chartjs-2": "^5.3.0",
"react-dom": "19.1.4",
"react-hook-form": "^7.65.0",
"react-markdown": "^10.1.0",
"rehype-raw": "^7.0.0"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
"devDependencies": {
"@playwright/test": "^1.56.1",
"@web3icons/common": "^0.11.12",
"@web3icons/core": "^4.0.15",
"dotenv": "^17.2.3",
"husky": "^9.1.7",
"jimp": "^1.6.0",
"jsqr": "^1.4.0",
"lint-staged": "^16.2.6",
"near-sandbox": "^0.2.0",
"prettier": "^3.6.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,css,md}": [
"prettier --write"
]
}
}