-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.25 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
{
"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": "cz",
"prepublishOnly": "npm run test:ci",
"release": "lerna version --no-private --conventional-commits --create-release github --yes && lerna publish from-git --yes",
"compile": "turbo run compile",
"start": "lerna run start",
"lint": "turbo run lint",
"test": "turbo run test --concurrency=1",
"test:ci": "turbo run lint && jest",
"prepare": "husky install"
},
"workspaces": [
"packages/*"
],
"lint-staged": {
"packages/**/{src,test}/**/*.ts": [
"prettier --write"
]
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"check-dependency-version-consistency": "^4.1.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint-config-xo-typescript": "^1.0.1",
"eslint-plugin-prettier": "^5.1.3",
"git-cz": "^4.9.0",
"husky": "^9.0.10",
"jest": "^29.7.0",
"jest-esm-transformer": "^1.0.0",
"jest-sonar": "^0.2.16",
"jest-sonar-reporter": "^2.0.0",
"lerna": "^8.1.2",
"lint-staged": "^15.2.1",
"prettier": "^3.2.4",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"turbo": "^1.12.2",
"typescript": "^5.3.3"
},
"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"
}
},
"jestSonar": {
"reportPath": "coverage",
"reportFile": "test-report.xml",
"indent": 2
},
"dependencies": {
"fs-extra": "^11.1.0",
"tar": "^7.2.0"
}
}