-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
94 lines (94 loc) · 3.3 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
{
"name": "bestofui5-website",
"version": "0.15.0",
"description": "bestofui5-website - UI5 Application",
"private": true,
"author": "Marian Zeis",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/ui5-community/bestofui5-website.git"
},
"scripts": {
"prepare": "node ./.husky/skip.js || husky install",
"clean": "rm -rf docs",
"build": "npm-run-all build:ts build:ui5",
"build:opt": "npm-run-all build:ts build:ui5:opt",
"build:ts": "babel src --out-dir webapp --source-maps true --extensions \".ts,.js\" --copy-files",
"build:ui5": "ui5 build self-contained --all --clean-dest --dest docs",
"start": "npm-run-all --parallel watch:ts start:ui5",
"start:test": "npm-run-all --parallel watch:ts start:mock",
"watch:ts": "babel src --out-dir webapp --source-maps true --extensions \".ts,.js\" --copy-files --watch",
"watch:controls": "npx @ui5/ts-interface-generator",
"start:ui5": "ui5 serve --port 8080 -o index.html",
"start:dist": "ui5 serve --port 8080 -o index.html --config ui5-dist.yaml",
"start:mock": "ui5 serve --port 8080 -o mockServer.html",
"ts-typecheck": "tsc --noEmit",
"lint": "eslint src",
"lint:staged": "lint-staged",
"lint:commit": "commitlint -e",
"prettier": "prettier --write .",
"prettier:staged": "pretty-quick --staged --verbose",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"hooks:pre-commit": "npm-run-all --sequential prettier:staged lint:staged",
"hooks:pre-push": "npm-run-all --sequential lint:commit",
"test": "wait-on tcp:8080 && wdio run wdio.conf.js"
},
"dependencies": {
"chart.js": "^4.3.3",
"ui5-cc-md": "^0.0.7"
},
"devDependencies": {
"@babel/cli": "^7.22.9",
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-typescript": "^7.22.5",
"@babel/register": "^7.22.5",
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@openui5/ts-types-esm": "1.116.0",
"@prettier/plugin-xml": "^2.2.0",
"@types/chart.js": "2.9.37",
"@types/jquery": "3.5.16",
"@types/node": "^20.4.8",
"@types/node-fetch": "^2.6.4",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@ui5/cli": "^3.3.4",
"@ui5/ts-interface-generator": "^0.7.0",
"@wdio/cli": "^7.32.3",
"@wdio/local-runner": "^7.32.3",
"@wdio/mocha-framework": "^7.30.2",
"@wdio/spec-reporter": "^7.31.1",
"babel-preset-transform-ui5": "^7.2.4",
"chromedriver": "^115.0.0",
"conventional-changelog-cli": "^3.0.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.46.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"node-fetch": "^3.3.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"prettier-plugin-properties": "^0.2.0",
"pretty-quick": "^3.1.3",
"sitemap": "^7.1.1",
"typescript": "^5.1.6",
"ui5-middleware-livereload": "^3.0.0",
"ui5-tooling-modules": "^3.0.0",
"wait-on": "^7.0.1",
"wdio-chromedriver-service": "^8.1.1",
"wdio-ui5-service": "^1.5.1",
"xml-formatter": "^3.5.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}