-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathpackage.json
36 lines (36 loc) · 946 Bytes
/
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
{
"name": "ui5-webcomponents-sample-vue",
"version": "0.7.0",
"private": true,
"scripts": {
"dev": "vite",
"preview": "vite preview",
"build": "vite build",
"lint": "eslint --ext .js, src && npm run lint:success",
"lint:success": "echo No linting errors found.",
"lint:commit": "commitlint -e",
"hooks:pre-push": "npm run lint:commit",
"prepare": "husky install"
},
"dependencies": {
"@ui5/webcomponents": "^2.2.0",
"@ui5/webcomponents-base": "^2.2.0",
"@ui5/webcomponents-fiori": "^2.2.0",
"@ui5/webcomponents-icons": "^2.2.0",
"vue": "^3.4.38"
},
"devDependencies": {
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@vitejs/plugin-vue": "^4.0.0",
"eslint": "^8.17.0",
"eslint-plugin-vue": "^9.1.1",
"husky": "^8.0.0",
"vite": "^4.1.5"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}