-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
85 lines (85 loc) · 2.43 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
{
"name": "bip-wallet",
"version": "1.0.0",
"description": " ",
"author": "shrpne <[email protected]>",
"private": true,
"scripts": {
"prod": "npm run production",
"production": "npm run build",
"dev": "gulp & nuxt --spa --port=3010 --hostname=localhost",
"build": "gulp once && nuxt build --spa",
"start": "nuxt start --spa --port=3010 --hostname=localhost",
"generate": "gulp once && nuxt generate",
"analyze": "gulp once && nuxt build --spa --analyze",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore .",
"lint:fix": "eslint --ext .js,.vue --ignore-path .gitignore . --fix",
"precommit": "echo 'Pre-commit checks...' && npm run lint"
},
"pre-commit": [
"precommit"
],
"dependencies": {
"@vue/composition-api": "^1.7.1",
"axios": "^0.27.2",
"axios-extensions": "^3.1.6",
"big.js": "^6.2.1",
"camelcase-keys": "^7.0.2",
"centrifuge": "^2.8.5",
"clipbrd": "^1.0.2",
"core-js": "^3.30.1",
"date-fns": "^2.29.3",
"entity-decode": "^2.0.2",
"lodash-es": "^4.17.21",
"minter-coin-block-list": "0.0.10",
"minter-js-sdk": "^0.45.6",
"minterjs-tx": "^12.0.3",
"minterjs-util": "^0.25.1",
"minterjs-wallet": "^6.2.0",
"nuxt": "^2.15.8",
"onsenui": "2.11.2",
"pretty-num": "^0.5.2",
"qrcode.vue": "^1.7.0",
"sanitize.css": "^12.0.1",
"thousands": "^1.0.1",
"v-autosize": "^1.0.3",
"v-file-input": "^0.1.2",
"vue-imask": "6.6.0",
"vue-onsenui": "2.6.4",
"vue-simple-suggest": "^1.11.2",
"vuelidate": "^0.7.7",
"vuex-persistedstate": "^3.2.1"
},
"devDependencies": {
"@babel/eslint-parser": "^7.21.3",
"@nuxt/types": "^2.15.8",
"autoprefixer": "^9.8.8",
"beeper": "^2.1.0",
"cross-env": "^7.0.3",
"del": "^6.1.1",
"dotenv": "^16.0.3",
"eslint": "^8.38.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-plugin-vue": "^9.11.0",
"fancy-log": "^1.3.3",
"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": "^8.0.0",
"gulp-rename": "^2.0.0",
"imagemin-jpegtran": "^7.0.0",
"imagemin-mozjpeg": "^9.0.0",
"postcss-cssnext": "^3.1.1",
"postcss-import": "^12.0.1",
"postcss-normalize": "^9.0.0",
"pre-commit": "^1.2.2"
},
"browserslist": [
"> 0.5%",
"last 2 versions",
"Firefox ESR"
]
}