-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathpackage.json
97 lines (97 loc) · 2.59 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "yeoman-ui-frontend",
"displayName": "Application Wizard Frontend",
"version": "1.17.1",
"private": true,
"description": "Frontend for the application wizard framework",
"license": "Apache 2.0",
"publisher": "SAP",
"scripts": {
"build": "vite build",
"build-dev": "vite build --mode development",
"ci": "npm-run-all clean build coverage coverage:copy",
"clean": "shx rm -rf ./dist ./coverage",
"coverage": "jest -w 1",
"coverage:copy": "shx mkdir -p ../../coverage && shx cp -u ./coverage/lcov.info ../../coverage/lcov_frontend.info",
"serve": "vite",
"test": "jest -w 1"
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"eslintConfig": {
"env": {
"jest": true,
"node": true
},
"parserOptions": {
"parser": "babel-eslint"
},
"extends": [
"plugin:vue/vue3-recommended",
"eslint:recommended",
"prettier"
],
"rules": {
"vue/html-self-closing": [
"error",
{
"html": {
"normal": "never",
"void": "always"
}
}
],
"vue/max-attributes-per-line": [
"off"
],
"vue/multiline-html-element-content-newline": "off",
"vue/singleline-html-element-content-newline": "off"
},
"root": true
},
"nyc": {
"reporter": [
"lcov",
"text"
],
"tempDirectory": "./coverage"
},
"dependencies": {
"@mdi/font": "5.9.55",
"@sap-devx/inquirer-gui": "3.0.8",
"@sap-devx/inquirer-gui-auto-complete-plugin": "3.0.6",
"@sap-devx/inquirer-gui-file-browser-plugin": "3.0.3",
"@sap-devx/inquirer-gui-folder-browser-plugin": "3.0.3",
"@sap-devx/inquirer-gui-label-plugin": "3.0.3",
"@sap-devx/inquirer-gui-login-plugin": "3.0.3",
"@sap-devx/inquirer-gui-tiles-plugin": "3.0.3",
"@sap-devx/webview-rpc": "0.4.1",
"@sap-devx/yeoman-ui-types": "^1.17.1",
"core-js": "^3.8.3",
"material-design-icons-iconfont": "6.1.0",
"vue": "^3.3.4",
"vue-loading-overlay": "^6.0.0",
"vuetify": "^3.5.7"
},
"devDependencies": {
"@babel/core": "^7.12.16",
"@babel/preset-env": "7.11.5",
"@vitejs/plugin-vue": "4.5.2",
"@vue/compiler-sfc": "3.3.4",
"@vue/test-utils": "2.4.1",
"@vue/vue3-jest": "29.2.6",
"babel-eslint": "^10.0.1",
"babel-jest": "29.7.0",
"eslint-plugin-vue": "9.14.1",
"jest": "29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-serializer-vue": "^2.0.2",
"jest-transform-stub": "^2.0.0",
"mock-socket": "^9.0.2",
"sass": "1.56.1",
"ts-jest": "^29.1.1",
"vite": "4.5.2"
}
}