-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
78 lines (78 loc) · 2.28 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
{
"name": "xpool",
"type": "module",
"version": "0.1.0",
"private": true,
"packageManager": "[email protected]",
"license": "AGPL-3.0",
"homepage": "https://github.com/mfactory-lab/reference-pool#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/mfactory-lab/reference-pool.git"
},
"bugs": {
"url": "https://github.com/mfactory-lab/reference-pool/issues"
},
"licenses": [
{
"type": "AGPL-3.0",
"url": "https://www.gnu.org/licenses/agpl-3.0.txt"
}
],
"scripts": {
"dev": "vite --port 3333",
"build": "vite build --mode production",
"build:staging": "vite build --mode staging",
"build:report": "vite build --mode report",
"preview": "vite preview",
"lint": "eslint --cache ./src",
"lint:fix": "eslint --cache --ext .js,.vue,.ts --fix ./src",
"deploy:gh-pages": "push-dir --dir=dist --branch=gh-pages --cleanup"
},
"dependencies": {
"@quasar/extras": "^1.16.12",
"@solana/buffer-layout": "^4.0.1",
"@solana/spl-stake-pool": "mfactory-lab/spl-stake-pool#b74c66e",
"@solana/spl-token": "^0.1.8",
"@solana/wallet-adapter-wallets": "^0.19.32",
"@solana/web3.js": "^1.95.4",
"@unhead/vue": "^1.11.10",
"@vueuse/core": "^11.2.0",
"axios": "^1.7.7",
"bn.js": "^5.2.1",
"bs58": "^5.0.0",
"lodash-es": "^4.17.21",
"mitt": "^3.0.1",
"pinia": "^2.2.5",
"prettier": "^3.3.3",
"quasar": "^2.17.1",
"solana-wallets-vue": "^0.6.1",
"vue": "^3.5.12",
"vue-gtag": "^2.0.1",
"vue-router": "^4.4.5"
},
"devDependencies": {
"@antfu/eslint-config": "^3.8.0",
"@quasar/vite-plugin": "^1.8.0",
"@rollup/plugin-inject": "^4.0.4",
"@types/bn.js": "^5.1.6",
"@types/bs58": "^4.0.4",
"@types/lodash-es": "^4.17.12",
"@types/node": "^17.0.45",
"@vitejs/plugin-vue": "^5.1.4",
"eslint": "^9.13.0",
"eslint-plugin-format": "^0.1.2",
"jsbi": "^4.3.0",
"path": "^0.12.7",
"push-dir": "^0.4.1",
"rollup-plugin-visualizer": "^5.12.0",
"sass": "~1.80.5",
"typescript": "^5.5.4",
"unplugin-auto-import": "^0.18.3",
"unplugin-vue-components": "^0.20.1",
"unplugin-vue-router": "^0.10.8",
"vite": "^5.4.10",
"vite-plugin-node-polyfills": "^0.22.0",
"vite-plugin-vue-layouts": "^0.11.0"
}
}