-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) 路 3.61 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) 路 3.61 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "unikube-frontend",
"version": "1.5.4",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"test:unit": "vue-cli-service test:unit",
"test:e2e": "NODE_ENV='e2e' CYPRESS_coverage=true nyc --reporter=lcov --reporter=text vue-cli-service test:e2e",
"test:e2e:ci": "NODE_ENV='e2e' CYPRESS_coverage=true nyc --reporter=lcov --reporter=text vue-cli-service test:e2e --headless --browser chrome",
"test:report": "nyc report --reporter=text",
"lint": "vue-cli-service lint",
"codegen": "graphql-codegen --config codegen.yml",
"test:codegen": "graphql-codegen --config tests/graphql/codegen.yml -e",
"kindify": "node kindify.js",
"release": "dotenv release-it"
},
"dependencies": {
"@apollo/client": "^3.5.9",
"@casl/ability": "^5.4.3",
"@casl/vue": "^1.2.2",
"@sentry/vue": "^6.17.4",
"axios": "^0.24.0",
"core-js": "^3.21.1",
"graphql": "^16.2.0",
"graphql-tag": "^2.12.6",
"jwt-decode": "^3.1.2",
"monaco-editor": "^0.31.1",
"monaco-editor-webpack-plugin": "^7.0.1",
"monaco-yaml": "^4.0.0-alpha.0",
"vue": "^2.6.14",
"vue-apollo": "^3.1.0",
"vue-axios": "^3.4.0",
"vue-class-component": "^7.2.3",
"vue-i18n": "^8.27.0",
"vue-property-decorator": "^9.1.2",
"vue-router": "^3.5.3",
"vue2-dropzone": "^3.6.0",
"vuelidate": "^0.7.7",
"vuetify": "^2.6.3",
"vuex": "^3.6.2",
"webpack": "^5.72.0"
},
"devDependencies": {
"@babel/runtime": "^7.17.2",
"@cypress/code-coverage": "^3.9.12",
"@cypress/webpack-preprocessor": "^5.11.1",
"@graphql-codegen/add": "^3.1.1",
"@graphql-codegen/cli": "2.4.0",
"@graphql-codegen/schema-ast": "^2.4.0",
"@graphql-codegen/typescript": "2.4.5",
"@graphql-codegen/typescript-document-nodes": "2.2.5",
"@graphql-codegen/typescript-operations": "2.2.3",
"@intlify/vue-i18n-loader": "^3.3.0",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@sentry/webpack-plugin": "^1.18.4",
"@types/chai": "^4.3.0",
"@types/dropzone": "^5.7.4",
"@types/jest": "^27.4.1",
"@types/mocha": "^9.1.0",
"@types/vuelidate": "^0.7.15",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"@vue/cli-plugin-babel": "^5.0.1",
"@vue/cli-plugin-e2e-cypress": "^5.0.1",
"@vue/cli-plugin-eslint": "^5.0.0-rc.1",
"@vue/cli-plugin-router": "^5.0.1",
"@vue/cli-plugin-typescript": "^5.0.1",
"@vue/cli-plugin-unit-jest": "^5.0.1",
"@vue/cli-plugin-vuex": "^5.0.0-rc.2",
"@vue/cli-service": "^5.0.1",
"@vue/eslint-config-airbnb": "^6.0.0",
"@vue/eslint-config-typescript": "^10.0.0",
"@vue/test-utils": "^1.3.0",
"auto-changelog": "^2.3.0",
"babel-plugin-istanbul": "^6.1.1",
"chai": "^4.3.4",
"cypress": "^9.4.1",
"dotenv-cli": "^4.1.1",
"eslint": "^7.32.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-vue": "^8.5.0",
"eslint-plugin-vuejs-accessibility": "^1.1.1",
"istanbul-lib-coverage": "^3.2.0",
"keycloak-js": "^16.1.1",
"lint-staged": "^12.3.4",
"nyc": "^15.1.0",
"release-it": "^14.12.5",
"sass": "^1.49.9",
"sass-loader": "^12.6.0",
"ts-loader": "^9.2.6",
"typescript": "^4.5.5",
"vue-cli-plugin-vuetify": "^2.4.7",
"vue-template-compiler": "^2.6.14",
"vuetify-loader": "^1.7.3"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"vue-cli-service lint",
"git add"
]
},
"auto-changelog": {
"template": "keepachangelog"
}
}