-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.76 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
{
"name": "hacking.away.sampleapp-reactor",
"version": "0.0.0",
"private": true,
"description": "TypeScript UI5 sample application show-casing the latest shit!",
"author": "Volker Buzek, Wouter Lemaire, Peter Muessig",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/ui5-community/hacking-away-sampleapp.git"
},
"engines": {
"node": ">=16"
},
"packageManager": "pnpm@7.1.7",
"scripts": {
"build": "pnpm -r build",
"start": "run-p watch:library watch:server start:ui",
"start:ui": "pnpm --filter @local/ui start",
"start:lib": "pnpm --filter @local/library start",
"watch:library": "pnpm --filter @local/library watch",
"watch:server": "pnpm --filter @local/server watch",
"lint": "pnpm --workspace-concurrency 1 -r lint",
"lint:staged": "pnpm -r lint:staged",
"lint:commit": "commitlint -e",
"prettier": "prettier --write .",
"prettier:staged": "pretty-quick --staged --verbose",
"prepare": "node ./.husky/skip.js || husky install",
"hooks:pre-commit": "npm-run-all --sequential prettier:staged lint:staged",
"hooks:pre-push": "npm-run-all --sequential lint:commit",
"ncu": "for d in ./packages/*/ ; do (cd \"$d\" && ncu); done",
"ncu-u": "for d in ./packages/*/ ; do (cd \"$d\" && ncu -u); done",
"wdi5": "pnpm --filter @local/ui wdi5"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@prettier/plugin-xml": "^2.2.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.24.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"prettier-plugin-properties": "^0.2.0",
"pretty-quick": "^3.1.3",
"wait-on": "^6.0.1"
}
}