-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.28 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.28 KB
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": "webtrit_dialer",
"version": "0.11.11",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"build:dev": "vue-cli-service build --mode development",
"test:unit": "vue-cli-service test:unit",
"test:e2e": "vue-cli-service test:e2e",
"lint": "vue-cli-service lint",
"i18n:report": "vue-cli-service i18n:report --src './src/**/*.?(js|vue)' --locales './src/locales/**/*.json'"
},
"dependencies": {
"@mdi/font": "^5.9.55",
"@vue/composition-api": "^1.0.0-beta.26",
"@webtrit/webtrit-signaling": "^0.5.5",
"axios": "^1.7.7",
"core-js": "^3.8.2",
"date-fns": "^2.23.0",
"date-fns-tz": "^1.1.6",
"play-dtmf": "^3.0.2",
"roboto-fontface": "*",
"sdp-transform": "^2.15.0",
"tailwindcss": "npm:@tailwindcss/postcss7-compat@^2.0.2",
"vue": "^2.6.12",
"vue-gravatar": "^1.3.1",
"vue-gtm": "3.1.1-vue2",
"vue-i18n": "^8.22.4",
"vue-router": "^3.4.9",
"vuetify": "^2.6.16",
"vuex": "^3.6.0",
"vuex-persist": "^3.1.3"
},
"devDependencies": {
"@intlify/vue-i18n-loader": "^1.0.0",
"@tailwindcss/postcss7-compat": "^2.0.2",
"@vue/cli-plugin-babel": "^4.5.10",
"@vue/cli-plugin-e2e-cypress": "^4.5.10",
"@vue/cli-plugin-eslint": "^4.5.10",
"@vue/cli-plugin-router": "^4.5.10",
"@vue/cli-plugin-unit-jest": "^4.5.10",
"@vue/cli-plugin-vuex": "^4.5.10",
"@vue/cli-service": "^4.5.10",
"@vue/test-utils": "^1.1.2",
"babel-eslint": "^10.1.0",
"eslint": "^7.18.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-vue": "^7.4.1",
"exports-loader": "^1.1.1",
"husky": "^4.3.8",
"lint-staged": "^10.5.3",
"postcss": "^7.0.36",
"postcss-preset-env": "^6.7.0",
"sass": "^1.32.4",
"sass-loader": "^10.1.1",
"stylelint": "^13.8.0",
"stylelint-config-standard": "^20.0.0",
"vue-cli-plugin-i18n": "~1.0.1",
"vue-cli-plugin-vuetify": "^2.0.9",
"vue-template-compiler": "^2.6.12",
"vuetify-loader": "^1.6.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx,vue}": [
"vue-cli-service lint",
"git add"
]
}
}