-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.15 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "entity-developer-dashboard",
"version": "1.0.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve --mode production",
"dev": "vue-cli-service serve --mode staging",
"setEnv": "cp .env.staging .env",
"build": "vue-cli-service build",
"build-stage": "vue-cli-service build --mode staging",
"lint": "vue-cli-service lint",
"test:unit": "vue-cli-service test:unit",
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
},
"dependencies": {
"@cosmjs/cosmwasm-stargate": "^0.32.3",
"@cosmjs/crypto": "^0.32.2",
"@cosmjs/proto-signing": "^0.31.0",
"@digitalbazaar/ed25519-signature-2020": "^5.2.0",
"@digitalbazaar/ed25519-verification-key-2020": "^4.1.0",
"@digitalbazaar/vc": "^6.0.1",
"@hypersign-protocol/domain-linkage-verifier": "github:hypersign-protocol/Domain-linkage-verifier",
"@hypersign-protocol/hypersign-kyc-chains-metadata": "github:hypersign-protocol/hypersign-kyc-chains-metadata",
"@mdi/font": "^7.0.96",
"@mdi/light-font": "^0.2.63",
"@nibiruchain/nibijs": "^5.0.2",
"aes-js": "^3.1.2",
"axios": "^1.4.0",
"babel-eslint": "^10.1.0",
"bip39": "^3.1.0",
"bootstrap": "^4.6.2",
"bootstrap-vue": "^2.23.1",
"chart.js": "^4.4.3",
"core-js": "^3.8.3",
"crypto-browserify": "^3.12.0",
"dotenv": "^16.0.1",
"fs": "^0.0.1-security",
"gh-pages": "^1.2.0",
"hs-ssi-sdk": "^7.0.1",
"jsonld": "^8.3.2",
"lds-sdk": "^4.0.1",
"leaflet": "^1.9.4",
"mdbvue": "^6.7.1",
"node-fetch": "^2.6.0",
"qrcode.vue": "^1.7.0",
"sha.js": "^2.4.11",
"ua-parser-js": "^1.0.37",
"uuid": "^11.0.2",
"valid-url": "^1.0.9",
"validator": "^13.7.0",
"vue": "^2.6.14",
"vue-country-flag": "^2.3.2",
"vue-loading-overlay": "^3.4.0",
"vue-multiselect": "^2.1.6",
"vue-notification": "^1.3.20",
"vue-qr": "^4.0.9",
"vue-router": "^3.0.1",
"vue-sidebar-menu": "^4.7.4",
"vue2-leaflet": "^2.7.1",
"vuejs-datetimepicker": "^1.1.13",
"vuetify": "2.0.0",
"vuex": "^3.4.0",
"vuex-persistedstate": "^4.1.0",
"webpack": "^5.90.3"
},
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/eslint-parser": "^7.12.16",
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@babel/plugin-transform-private-methods": "^7.22.5",
"@vue/cli-plugin-babel": "~5.0.0",
"@vue/cli-plugin-eslint": "~5.0.0",
"@vue/cli-plugin-unit-mocha": "^3.0.0-rc.10",
"@vue/cli-service": "~5.0.0",
"@vue/test-utils": "^1.0.0-beta.20",
"chai": "^4.1.2",
"eslint": "^7.32.0",
"eslint-plugin-vue": "^8.0.3",
"node-polyfill-webpack-plugin": "^2.0.1",
"sass": "^1.64.1",
"sass-loader": "^10",
"vue-template-compiler": "^2.6.14"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {
"no-console": "off"
},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}