-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
94 lines (94 loc) · 2.91 KB
/
package.json
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "network-explorer",
"version": "0.1.0",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"dev": "next dev",
"prebuild": "npm run db:migrate",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky install",
"test": "jest --watch",
"db:migrate": "TS_NODE_COMPILER_OPTIONS='{ \"module\": \"commonjs\" }' knex migrate:latest",
"db:migrate:undo": "TS_NODE_COMPILER_OPTIONS='{ \"module\": \"commonjs\" }' knex migrate:down",
"db:migrate:make": "TS_NODE_COMPILER_OPTIONS='{ \"module\": \"commonjs\" }' knex migrate:make"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
},
"browserslist": "defaults, not ie <= 11",
"dependencies": {
"@coral-xyz/anchor": "^0.27.0",
"@headlessui/react": "1.7.13",
"@headlessui/tailwindcss": "0.1.2",
"@helium/account-fetch-cache": "^0.2.5",
"@helium/address": "^4.8.1",
"@helium/helium-react-hooks": "^0.2.11",
"@helium/helium-sub-daos-sdk": "^0.2.5",
"@helium/idls": "^0.4.0",
"@helium/spl-utils": "^0.2.13",
"@helium/treasury-management-sdk": "^0.2.5",
"@helium/voter-stake-registry-sdk": "^0.1.4",
"@heroicons/react": "2.0.17",
"@metaplex-foundation/mpl-token-metadata": "^2.9.1",
"@solana/spl-account-compression": "0.1.7",
"@solana/spl-token": "^0.3.7",
"@solana/web3.js": "^1.75.0",
"@tailwindcss/forms": "0.5.3",
"@tailwindcss/typography": "0.5.9",
"angry-purple-tiger": "1.0.5",
"axios": "^1.3.5",
"better-sqlite3": "^8.5.0",
"bn.js": "^5.2.1",
"clsx": "1.2.1",
"date-fns": "^2.29.3",
"dotenv": "^16.3.1",
"encoding": "^0.1.13",
"focus-visible": "5.2.0",
"h3-js": "4.1.0",
"knex": "^2.5.1",
"mapbox-gl": "^2.15.0",
"maplibre-gl": "^3.3.1",
"next": "14.2.4",
"next-themes": "0.2.1",
"pg": "^8.11.1",
"pmtiles": "^2.10.0",
"react": "18.3.1",
"react-async-hook": "^4.0.0",
"react-countdown": "^2.3.5",
"react-dom": "18.3.1",
"react-map-gl": "^7.1.6",
"react-tooltip": "^5.11.1",
"recharts": "^2.5.0",
"tailwindcss": "3.3.1",
"use-debounce": "9.0.4"
},
"devDependencies": {
"@next/env": "13.3.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@types/gtag.js": "^0.0.12",
"@types/jest": "^29.5.3",
"@types/node": "18.15.11",
"@types/react": "18.3.3",
"@types/react-dom": "18.3.0",
"autoprefixer": "10.4.14",
"eslint": "^8.57.0",
"eslint-config-next": "14.2.4",
"eslint-config-prettier": "8.8.0",
"husky": "8.0.3",
"jest": "^29.6.1",
"jest-environment-jsdom": "^29.6.1",
"lint-staged": "13.2.1",
"postcss": "8.4.21",
"postcss-focus-visible": "8.0.2",
"postcss-import": "15.1.0",
"prettier": "2.8.7",
"prettier-plugin-tailwindcss": "0.2.7",
"sharp": "0.32.0",
"ts-node": "10.9.1",
"typescript": "5.0.4"
}
}