forked from jungvonmatt/contentful-ssg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.89 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
{
"name": "@jungvonmatt/contentful-ssg-project",
"version": "1.0.0",
"private": true,
"description": "A monorepo for all NPM packages related to contentful-ssg",
"author": "Jung von Matt TECH GmbH",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jungvonmatt/contentful-ssg"
},
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"clean": "lerna run clean",
"commit": "git-cz",
"postinstall": "lerna bootstrap --hoist --progress --no-ci",
"prepublishOnly": "npm run test:ci",
"release": "lerna version --no-private --conventional-commits --create-release github --yes && lerna publish from-git --yes",
"compile": "lerna run compile",
"start": "lerna run start",
"lint": "lerna run lint",
"test": "jest",
"test:ci": "npm run compile && npm run test:prod",
"test:prod": "npm run lint && npm run test -- --coverage --no-cache",
"test:watch": "jest --watch",
"prepare": "husky install"
},
"workspaces": [
"packages/*"
],
"lint-staged": {
"packages/**/{src,test}/**/*.ts": [
"prettier --write"
]
},
"devDependencies": {
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@types/jest": "^27.0.3",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint-plugin-prettier": "^4.0.0",
"git-cz": "^4.8.0",
"husky": "^7.0.4",
"jest": "^27.3.0",
"lerna": "^4.0.0",
"lint-staged": "^12.1.2",
"prettier": "^2.4.1",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"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/git-cz"
}
}
}