-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.56 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.56 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
{
"name": "nolus-wallet",
"author": "Nolus",
"license": "Apache-2.0",
"version": "3.0.3",
"private": true,
"type": "module",
"scripts": {
"serve": "vite --port 8080 --mode serve --host",
"build": "vite build --mode production",
"build:dev": "vite build --mode development",
"preview": "vite preview --port 8080 --host",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write src",
"format:check": "prettier --check src",
"prepare": "husky"
},
"dependencies": {
"@cosmjs/amino": "0.38.1",
"@cosmjs/cosmwasm-stargate": "0.38.1",
"@cosmjs/crypto": "0.38.1",
"@cosmjs/encoding": "0.38.1",
"@cosmjs/ledger-amino": "0.38.1",
"@cosmjs/math": "0.38.1",
"@cosmjs/proto-signing": "0.38.1",
"@cosmjs/stargate": "0.38.1",
"@cosmjs/tendermint-rpc": "0.38.1",
"@cosmjs/utils": "0.38.1",
"@intercom/messenger-js-sdk": "^0.0.18",
"@keplr-wallet/types": "0.12.312",
"@keplr-wallet/unit": "0.12.312",
"@ledgerhq/hw-transport-web-ble": "^6.30.1",
"@ledgerhq/hw-transport-webusb": "^6.29.16",
"@nolus/nolusjs": "^3.7.6",
"@observablehq/plot": "^0.6.17",
"cosmjs-types": "^0.11.0",
"cosmjs-types-legacy": "npm:cosmjs-types@0.8.0",
"d3": "^7.9.0",
"dompurify": "^3.3.1",
"ethers": "^6.16.0",
"marked": "^17.0.0",
"motion-plus-vue": "^1.6.0",
"pinia": "^3.0.4",
"vue": "^3.5.24",
"vue-i18n": "11.2.8",
"vue-router": "^4.6.3",
"web-components": "github:nolus-protocol/web-components#v2.0.66",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@intlify/unplugin-vue-i18n": "^11.0.1",
"@rollup/plugin-inject": "^5.0.5",
"@tailwindcss/postcss": "^4.2.1",
"@tsconfig/node22": "^22.0.2",
"@types/d3": "^7.4.3",
"@types/jsdom": "^27.0.0",
"@types/node": "^24.9.2",
"@vitejs/plugin-vue": "^6.0.1",
"@vitest/coverage-v8": "^3.2.4",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.8.1",
"buffer": "^6.0.3",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-vue": "^10.8.0",
"husky": "^9.1.7",
"jsdom": "^27.2.0",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"prettier-plugin-tailwindcss": "^0.7.2",
"sass": "^1.94.1",
"tailwindcss": "^4.2.1",
"terser": "^5.44.0",
"typescript": "~5.8.3",
"typescript-eslint": "^8.56.1",
"vite": "^7.2.2",
"vite-svg-loader": "^5.1.0",
"vitest": "^3.2.4"
}
}