-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.15 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
{
"name": "@jungvonmatt/contentful-apps",
"version": "1.0.0",
"private": true,
"description": "Monorepo for contentful apps",
"repository": {
"type": "git",
"url": "git+https://github.com/jungvonmatt/contentful-apps.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jungvonmatt/contentful-apps/issues"
},
"homepage": "https://github.com/jungvonmatt/contentful-apps#readme",
"workspaces": [
"packages/*"
],
"scripts": {
"start": "turbo run start",
"build": "turbo run build",
"test": "turbo run test",
"upload": "turbo run upload"
},
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"commitizen": "^4.2.4",
"git-cz": "^4.8.0",
"lerna": "^4.0.0",
"turbo": "^1.2.9",
"typescript": "^4.5.2"
},
"config": {
"validate-commit-msg": {
"types": "conventional-commit-types",
"helpMessage": "Use \"npm run commit\" instead, we use conventional-changelog format :) (https://github.com/commitizen/cz-cli)"
},
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}