-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.56 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
{
"name": "dyna-social-view",
"version": "0.1.0",
"private": true,
"scripts": {
"serve": "vue-cli-service serve --port 8080",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint"
},
"dependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
"@dsb-norge/vue-keycloak-js": "^1.1.2",
"apollo-link-ws": "^1.0.19",
"apollo-utilities": "^1.3.3",
"axios": "^0.19.1",
"core-js": "^3.4.4",
"eslint-plugin-graphql": "^3.1.1",
"eslint-plugin-import-helpers": "^1.0.2",
"luxon": "^1.22.0",
"vee-validate": "^3.2.1",
"vue": "^2.6.10",
"vue-apollo": "^3.0.0-beta.11",
"vue-i18n": "^8.15.5",
"vue-router": "^3.1.3",
"vuejs-logger": "^1.5.3",
"vuetify": "^2.2.15",
"vuex": "^3.1.2"
},
"devDependencies": {
"@mdi/font": "^4.7.95",
"@vue/cli-plugin-babel": "^4.1.0",
"@vue/cli-plugin-eslint": "^4.1.0",
"@vue/cli-service": "^4.1.0",
"@vue/eslint-config-prettier": "^5.0.0",
"babel-eslint": "^10.0.3",
"eslint": "^5.16.0",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-vue": "^5.0.0",
"graphql-tag": "^2.9.0",
"lint-staged": "^9.5.0",
"node-sass": "^4.13.1",
"prettier": "^1.19.1",
"sass": "^1.19.0",
"sass-loader": "^8.0.0",
"vue-cli-plugin-apollo": "^0.21.3",
"vue-cli-plugin-vuetify": "^2.0.3",
"vue-template-compiler": "^2.6.10",
"vuetify-loader": "^1.3.0"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,vue}": [
"vue-cli-service lint",
"git add"
]
}
}