-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
89 lines (89 loc) · 3.06 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
{
"name": "nolus-wallet",
"author": "Nolabs",
"license": "Apache-2.0",
"version": "1.2.0",
"private": true,
"type": "module",
"scripts": {
"serve": "vite --port 8080 --mode serve",
"build": "run-p type-check && vite build --mode development",
"build:production": "run-p type-check && vite build --mode production",
"preview": "vite preview --port 8080",
"type-check": "vue-tsc --build --force",
"lint": "eslint --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write src",
"prepare": "husky",
"test:unit": "vitest",
"test:e2e": "start-server-and-test preview http://localhost:4173 'cypress run --e2e'",
"test:e2e:dev": "CYPRESS_COMMAND_TIMEOUT=600000000 start-server-and-test 'vite --mode test --port 4173' http://localhost:4173 'cypress open --e2e'"
},
"dependencies": {
"@cosmjs/cosmwasm-stargate": "0.32.4",
"@cosmjs/crypto": "0.32.4",
"@cosmjs/encoding": "0.32.4",
"@cosmjs/ledger-amino": "0.32.4",
"@cosmjs/proto-signing": "0.32.4",
"@cosmjs/stargate": "0.32.4",
"@cosmjs/tendermint-rpc": "0.32.4",
"@headlessui/vue": "^1.7.19",
"@heroicons/vue": "^2.1.5",
"@injectivelabs/sdk-ts": "^1.14.5",
"@intercom/messenger-js-sdk": "^0.0.14",
"@keplr-wallet/crypto": "0.12.144",
"@keplr-wallet/types": "0.12.144",
"@keplr-wallet/unit": "0.12.144",
"@ledgerhq/hw-app-cosmos": "^6.30.4",
"@ledgerhq/hw-transport-web-ble": "^6.29.4",
"@ledgerhq/hw-transport-webhid": "^6.29.4",
"@ledgerhq/hw-transport-webusb": "^6.29.4",
"@ledgerhq/logs": "^6.12.0",
"@nolus/nolusjs": "^2.4.18",
"@skip-go/client": "^0.14.6",
"chart.js": "^4.4.5",
"chartjs-adapter-date-fns": "^3.0.0",
"cosmjs-types": "^0.9.0",
"cosmjs-types-legacy": "npm:[email protected]",
"date-fns": "^3.3.1",
"ethers": "^6.13.4",
"marked": "^14.1.3",
"pinia": "^2.2.4",
"vue": "^3.5.12",
"vue-chartjs": "^5.3.0",
"vue-i18n": "10.0.4",
"vue-router": "^4.4.5",
"web-components": "github:nolus-protocol/web-components#v1.6.7"
},
"devDependencies": {
"@intlify/unplugin-vue-i18n": "^5.2.0",
"@rushstack/eslint-patch": "^1.10.1",
"@tsconfig/node20": "^20.1.4",
"@types/jsdom": "^21.1.6",
"@types/node": "^22.8.6",
"@vitejs/plugin-vue": "^5.1.4",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.5.1",
"autoprefixer": "^10.4.17",
"buffer": "^6.0.3",
"cypress": "^13.15.1",
"eslint": "^8.57.0",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-vue": "^9.30.0",
"husky": "^9.1.6",
"jsdom": "^25.0.1",
"npm-run-all2": "^7.0.1",
"postcss": "^8.4.47",
"prettier": "^3.3.2",
"prettier-plugin-tailwindcss": "^0.6.8",
"sass": "^1.80.5",
"start-server-and-test": "^2.0.3",
"tailwindcss": "^3.4.14",
"typescript": "~5.6.3",
"vite": "^5.4.10",
"vite-plugin-node-polyfills": "^0.22.0",
"vitest": "^2.1.4",
"vue-tsc": "^2.1.10"
}
}