-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
77 lines (77 loc) · 2.27 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
{
"name": "swaponline.design-components",
"version": "0.0.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve --port 8080",
"build": "vue-cli-service build",
"build-prod": "vue-cli-service build --mode production",
"lint": "vue-cli-service lint",
"lint:style": "vue-cli-service lint:style",
"test:unit": "vue-cli-service test:unit"
},
"dependencies": {
"axios": "^0.21.1",
"axios-extensions": "^3.1.3",
"canvg": "^3.0.7",
"core-js": "^3.6.5",
"decimal.js-light": "^2.5.1",
"js-base64": "^3.6.1",
"lightweight-charts": "^3.7.0",
"lodash.clonedeep": "^4.5.0",
"lodash.debounce": "^4.0.8",
"lodash.isequal": "^4.5.0",
"lodash.merge": "^4.6.2",
"nanoevents": "^6.0.1",
"normalize.css": "^8.0.1",
"qrcode-generator": "^1.4.4",
"vue": "^2.6.11",
"vue-component-media-queries": "^1.0.0",
"vue-cryptoicon": "^0.17.2",
"vue-element-loading": "^2.0.2",
"vue-i18n": "^8.22.4",
"vue-infinite-loading": "^2.4.5",
"vue-router": "^3.2.0",
"vuetify": "^2.3.20",
"vuex": "^3.4.0"
},
"devDependencies": {
"@ascendancyy/vue-cli-plugin-stylelint": "^1.1.2",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-router": "~4.5.0",
"@vue/cli-plugin-unit-jest": "^4.5.8",
"@vue/cli-plugin-vuex": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/eslint-config-airbnb": "^5.1.0",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/test-utils": "^1.1.0",
"babel-eslint": "^10.1.0",
"deepmerge": "^4.2.2",
"eslint": "^6.7.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-vue": "^6.2.2",
"husky": "4.0.0",
"jest": "^26.6.1",
"lint-staged": "^10.5.2",
"node-sass": "^4.12.0",
"prettier": "^1.19.1",
"sass": "^1.30.0",
"sass-loader": "^8.0.2",
"stylelint": "^13.7.2",
"stylelint-config-recommended-scss": "^4.2.0",
"stylelint-config-standard": "^20.0.0",
"stylelint-scss": "^3.18.0",
"svg-sprite-loader": "^5.0.0",
"vue-template-compiler": "^2.6.11"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,vue}": "vue-cli-service lint --mode production --fix"
}
}