-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.36 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.36 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": "jackal-dashboard",
"version": "5.0.0",
"private": true,
"type": "module",
"scripts": {
"live:dev": "vite",
"live:custom": "vite --mode customnet",
"build:custom": "run-p type-check build-only-custom",
"build-only-custom": "vite build --mode customnet",
"live:testnet": "vite --mode testnet",
"build:testnet": "run-p type-check build-only-testnet",
"build-only-testnet": "vite build --mode testnet",
"live:prod": "vite --mode production",
"build:prod": "run-p build-only",
"build-only": "vite build --mode mainnet",
"preview": "vite preview",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore"
},
"contributors": [
{
"name": "Jackal Labs",
"email": "devadmin@jackallabs.io",
"url": "https://jackallabs.io"
},
{
"name": "Erin Rivas",
"email": "erin@jackallabs.io"
},
{
"name": "Marston Connell",
"email": "marston@jackallabs.io"
},
{
"name": "Justin Nguyen",
"email": "justin@jackallabs.io"
},
{
"name": "Eddy Guo",
"email": "eddy@jackallabs.io"
},
{
"name": "Christopher Simanjuntak",
"email": "chris@jackallabs.io"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/JackalLabs/jackal-dashboard.git"
},
"bugs": {
"url": "https://github.com/JackalLabs/jackal-dashboard/issues"
},
"homepage": "https://github.com/JackalLabs/jackal-dashboard/#readme",
"dependencies": {
"@jackallabs/jackal.js": "^3.7.1",
"@jackallabs/jackal.js-protos": "^2.4.0",
"bip39": "^3.1.0",
"jszip": "^3.10.1",
"minidenticons": "^4.2.1",
"pinia": "^2.1.7",
"vue": "^3.3.4",
"vue-router": "^4.1.6",
"vue3-toastify": "^0.2.1",
"vue3-touch-events": "^4.2.0"
},
"devDependencies": {
"@btmills/prettier": "2.8.8",
"@keplr-wallet/types": "^0.12.76",
"@rushstack/eslint-patch": "^1.1.4",
"@vitejs/plugin-vue": "^4.2.3",
"@vue/eslint-config-typescript": "^11.0.0",
"eslint": "^8.22.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-vue": "^9.3.0",
"npm-run-all": "^4.1.5",
"sass-embedded": "^1.80.6",
"sass-loader": "^10.2.1",
"typescript": "^5.0.2",
"vite": "^5.4.0",
"vite-plugin-node-polyfills": "^0.22.0",
"vue-tsc": "^2.0.29"
}
}