-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
139 lines (139 loc) · 4.76 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "minter-console-web",
"version": "0.12.3",
"description": "Minter Console Website",
"author": "shrpne <[email protected]>",
"private": true,
"scripts": {
"prod": "npm run production",
"production": "npm run build",
"dev": "gulp & nuxt --port=3002 --hostname=localhost",
"build": "gulp once && nuxt build",
"start": "nuxt start --port=3002 --hostname=localhost",
"generate": "gulp once && nuxt generate --fail-on-error",
"analyze": "gulp once && nuxt build --analyze",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint:fix": "eslint --ext .js,.vue --ignore-path .gitignore --fix .",
"test": "gulp once && NODE_ENV=test jest --bail --runInBand --verbose",
"test:skip-build": "NUXT_SKIP_SELF_BUILD=true npm run test",
"test:debug": "DEBUG=true npm run test",
"test:debug:skip-build": "DEBUG=true NUXT_SKIP_SELF_BUILD=true npm run test",
"es-check": "es-check es5 './dist/_nuxt/*[!.modern].js'",
"postinstall-disable": "electron-builder install-app-deps",
"electron:build": "npm run production && npm run electron:build-x64 && npm run electron:build-x86",
"electron:build-x64": "electron-builder -mwl --config=./desktop/electron-builder.config.js",
"electron:build-x86": "electron-builder -w --ia32 --config=./desktop/electron-builder-x86.config.js",
"electron:build-dir": "electron-builder --config=./desktop/electron-builder.config.js --dir",
"electron:dev": "electron ./desktop/electron.dev.js",
"precommit": "echo 'Pre-commit checks...' && npm run lint"
},
"pre-commit": [
"precommit"
],
"dependencies": {
"@ethersproject/contracts": "^5.7.0",
"@ethersproject/providers": "^5.7.2",
"@ethersproject/solidity": "^5.7.0",
"@material/list": "^14.0.0",
"@material/menu": "^14.0.0",
"@material/snackbar": "^14.0.0",
"@uniswap/sdk": "^3.0.3",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"@walletconnect/ethereum-provider": "^2.9.2",
"@walletconnect/modal": "^2.6.1",
"aes-js": "^3.1.2",
"axios": "^1.4.0",
"axios-extensions": "^3.1.7",
"axios-prevent-concurrency": "^0.0.3",
"big.js": "^6.2.1",
"camelcase-keys": "^7.0.2",
"centrifuge": "^2.8.5",
"clipbrd": "^1.0.2",
"cookie": "^0.5.0",
"core-js": "^3.32.0",
"custom-event-polyfill": "^1.0.7",
"date-fns": "^2.30.0",
"debounce-promise": "^3.1.2",
"entity-decode": "^2.0.2",
"ethereumjs-util": "^7.1.5",
"js-cookie": "^3.0.5",
"json5": "^2.2.3",
"localforage": "^1.10.0",
"lodash-es": "^4.17.21",
"minter-coin-block-list": "0.0.10",
"minter-footer-links": "^3.1.0",
"minter-js-sdk": "^0.46.2",
"minterjs-tx": "^12.0.3",
"minterjs-util": "^0.25.1",
"minterjs-wallet": "^6.2.0",
"nanoid": "^3.3.4",
"nuxt": "^2.17.1",
"nuxt-i18n": "^6.28.1",
"nuxt-i18n-default": "^0.0.2",
"nuxt-i18n-preferred": "^0.3.0",
"portal-vue": "^2.1.7",
"pretty-num": "^0.5.2",
"qr-scanner": "https://[email protected]/shrpne/qr-scanner.git#build",
"qrcode.vue": "^1.7.0",
"tiny-emitter": "^2.1.0",
"v-autosize": "^1.0.3",
"v-file-input": "^0.1.2",
"vue-async-computed": "https://[email protected]/shrpne/vue-async-computed.git#mixin-src",
"vue-autonumeric": "https://[email protected]/shrpne/vue-autonumeric.git#merge",
"vue-imask": "6.6.3",
"vue-inline-svg": "^2.1.3",
"vue-now": "^0.1.1",
"vue-simple-suggest": "^1.11.2",
"vuelidate": "^0.7.7",
"vuex": "^3.6.2",
"vuex-persist": "^3.1.3",
"vuex-persistedstate": "^3.2.1",
"web3-core": "^1.10.0",
"web3-eth": "^1.10.0",
"web3-utils": "^1.10.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.22.10",
"@babel/runtime-corejs3": "^7.22.10",
"@faker-js/faker": "^6.3.1",
"autoprefixer": "^10.4.14",
"babel-jest": "^29.6.2",
"beeper": "^2.1.0",
"cross-env": "^7.0.3",
"del": "^6.1.1",
"dotenv": "^16.3.1",
"electron": "^21.4.4",
"electron-builder": "^23.6.0",
"electron-debug": "^3.2.0",
"es-check": "^6.2.1",
"eslint": "^8.47.0",
"eslint-plugin-vue": "^9.17.0",
"fancy-log": "^2.0.0",
"gulp": "^4.0.2",
"gulp-cache": "^1.1.3",
"gulp-clean-css": "^4.3.0",
"gulp-imagemin": "^7.1.0",
"gulp-less": "^5.0.0",
"gulp-plumber": "^1.2.1",
"gulp-postcss": "^9.0.1",
"gulp-rename": "^2.0.0",
"imagemin-jpegtran": "^7.0.0",
"imagemin-mozjpeg": "^9.0.0",
"jest": "^29.6.2",
"minter-js-hub": "0.0.6",
"mkdirp": "^1.0.4",
"postcss": "^8.4.27",
"postcss-normalize": "^10.0.1",
"postcss-preset-env": "^7.8.3",
"pre-commit": "^1.2.2",
"puppeteer": "^14.4.1",
"rimraf": "^3.0.2"
},
"main": "desktop/electron.js",
"browserslist": [
"> 0.5%",
"last 2 versions",
"Firefox ESR",
"not dead"
]
}