This repository has been archived by the owner on Mar 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
80 lines (80 loc) · 2.18 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
{
"name": "mdtwallet-webapp",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"build-report": "vue-cli-service build --report",
"lint": "vue-cli-service lint",
"test:unit": "vue-cli-service test:unit",
"test:e2e": "vue-cli-service test:e2e --mode e2e",
"build-docker": "bash docker/docker.sh build",
"run-docker": "bash docker/docker.sh run",
"clean-docker": "bash docker/docker.sh clean"
},
"dependencies": {
"@chenfengyuan/vue-qrcode": "^1.0.1",
"axios": "^0.18.0",
"echarts": "^4.2.0-rc.2",
"lodash.throttle": "^4.1.1",
"lottie-web": "^5.5.7",
"mixpanel-browser": "^2.22.4",
"normalize.css": "^8.0.0",
"normalizr": "^3.2.4",
"numeral": "^2.0.6",
"vue": "^2.5.16",
"vue-awesome-swiper": "^3.1.3",
"vue-clipboard2": "^0.2.0",
"vue-cookies": "^1.7.0",
"vue-echarts": "^4.0.1",
"vue-i18n": "7.6.0",
"vue-material": "^1.0.0-beta-10.2",
"vue-meta": "^1.5.2",
"vue-pull-to": "^0.1.6",
"vue-qrcode-reader": "https://github.com/measurabledatatoken/vue-qrcode-reader.git",
"vue-recaptcha": "^1.1.1",
"vue-router": "^3.0.1",
"vue-script2": "^2.0.3",
"vuelidate": "^0.7.4",
"vuex": "^3.0.1",
"vuex-persistedstate": "^2.5.4",
"web3": "^1.2.1"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.10.0",
"@vue/cli-plugin-e2e-cypress": "^3.10.0",
"@vue/cli-plugin-eslint": "^3.10.0",
"@vue/cli-plugin-unit-jest": "^3.10.0",
"@vue/cli-service": "^3.10.0",
"@vue/eslint-config-prettier": "^3.0.0-rc.3",
"@vue/test-utils": "^1.0.0-beta.29",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^23.0.1",
"fs-extra": "^7.0.0",
"lint-staged": "^6.0.0",
"node-sass": "^4.12.0",
"sass-loader": "^7.0.1",
"vue-template-compiler": "^2.5.16"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8",
"iOS >= 9",
"Android >= 4.1"
],
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js": [
"vue-cli-service lint",
"git add"
],
"*.vue": [
"vue-cli-service lint",
"git add"
]
}
}