-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.55 KB
/
Copy pathpackage.json
File metadata and controls
108 lines (108 loc) · 3.55 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "arcana-wallet",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "run-s lint:all:*",
"lint:eslint": "eslint --fix",
"lint:markdownlint": "markdownlint --fix",
"lint:prettier": "prettier --write --loglevel warn",
"lint:stylelint": "stylelint --fix",
"lint:all:eslint": "npm run lint:eslint -- . --ext .vue,.ts --ignore-path .gitignore",
"lint:all:prettier": "npm run lint:prettier -- \"**/*.{ts,json,css,scss,vue,html,md}\" --ignore-path .gitignore",
"lint:all:stylelint": "npm run lint:stylelint -- \"**/*.{vue,css,scss}\" --ignore-path .gitignore",
"prepare": "husky install"
},
"dependencies": {
"@arcana/auth": "^0.1.3",
"@arcana/auth-core": "2.0.0-alpha.23",
"@arcana/key-helper": "^2.0.0-alpha.1",
"@arcana/scw": "^0.0.45",
"@fontsource/montserrat": "^4.5.14",
"@fontsource/sora": "^4.5.12",
"@headlessui/vue": "^1.7.22",
"@metaplex-foundation/mpl-token-metadata": "^3.2.1",
"@metaplex-foundation/umi": "^0.9.1",
"@metaplex-foundation/umi-bundle-defaults": "^0.9.1",
"@multiversx/sdk-core": "^12.19.2",
"@multiversx/sdk-network-providers": "^2.4.3",
"@multiversx/sdk-wallet": "^4.5.0",
"@noble/ed25519": "^2.1.0",
"@noble/hashes": "^1.4.0",
"@ramp-network/ramp-instant-sdk": "^4.0.5",
"@sentry/tracing": "^7.116.0",
"@sentry/vue": "^7.116.0",
"@solana/spl-token": "^0.3.8",
"@solana/web3.js": "^1.87.1",
"@vueuse/gesture": "^2.0.0",
"@vueuse/motion": "^2.2.3",
"axios": "^0.28.1",
"bs58": "^5.0.0",
"dayjs": "^1.11.11",
"decimal.js": "^10.4.3",
"defu": "^6.1.4",
"eth-block-tracker": "^5.0.1",
"eth-crypto": "^2.6.0",
"eth-json-rpc-middleware": "^9.0.1",
"eth-rpc-errors": "^4.0.3",
"eth-sig-util": "^3.0.1",
"ethereumjs-util": "^7.1.5",
"ethers": "^5.7.2",
"json-rpc-engine": "^6.1.0",
"near-api-js": "^4.0.1",
"penpal": "^6.2.2",
"pinia": "^2.1.7",
"pusher-js": "^8.4.0-rc2",
"qrious": "^4.0.2",
"uuid": "^9.0.1",
"vue": "^3.4.27",
"vue-class-component": "^8.0.0-rc.1",
"vue-gtag": "^2.0.1",
"vue-json-viewer": "^3.0.4",
"vue-qrious": "^3.1.1",
"vue-router": "^4.3.2",
"vue-slider-component": "^4.1.0-beta.7",
"vue-toastification": "^2.0.0-rc.5",
"vue3-popper": "^1.5.0",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/core": "^7.24.6",
"@babel/eslint-parser": "^7.24.6",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vue/cli-plugin-babel": "~5.0.8",
"@vue/cli-plugin-eslint": "~5.0.8",
"@vue/cli-plugin-typescript": "~5.0.8",
"@vue/cli-service": "~5.0.8",
"@vue/eslint-config-prettier": "^7.1.0",
"@vue/eslint-config-typescript": "^9.1.0",
"autoprefixer": "^10.4.19",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-vue": "^8.7.1",
"husky": "^7.0.4",
"lint-staged": "^12.5.0",
"markdownlint-cli": "^0.41.0",
"node-polyfill-webpack-plugin": "^4.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.38",
"prettier": "^2.8.8",
"stylelint": "^14.16.1",
"stylelint-config-prettier-scss": "^0.0.1",
"stylelint-config-recess-order": "^3.1.0",
"stylelint-config-standard-scss": "^3.0.0",
"stylelint-config-standard-vue": "^1.0.0",
"tailwindcss": "^3.4.3",
"typescript": "^5.6.3"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead",
"not ie 11"
]
}