-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
40 lines (40 loc) · 1.12 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
{
"name": "ui5-sample-apollo-reloaded",
"private": true,
"scripts": {
"build": "npm-run-all build:app",
"build:app": "yarn workspace apollo-demo-todo-app build:all",
"start": "npm-run-all --parallel start:server start:app",
"start:app": "yarn workspace apollo-demo-todo-app start",
"start:server": "yarn workspace apollo-demo-todo-server start",
"dist": "npm-run-all --parallel start:server dist:app",
"dist:app": "yarn workspace apollo-demo-todo-app dist",
"lint": "lerna run lint",
"prepare": "husky install",
"hooks:commit-msg": "commitlint -e",
"hooks:pre-commit": "yarn lint"
},
"author": "Damian Maring, Peter Muessig",
"license": "Apache 2.0",
"devDependencies": {
"@commitlint/cli": "17.4.2",
"@commitlint/config-conventional": "17.4.2",
"cz-conventional-changelog": "3.3.0",
"husky": "8.0.3",
"lerna": "^6.4.1",
"npm-run-all": "^4.1.5"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"workspaces": [
"packages/*"
]
}