-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
90 lines (90 loc) · 2.75 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
81
82
83
84
85
86
87
88
89
90
{
"name": "hoth",
"version": "1.0.0",
"description": "A Node.js framework based on fastify.",
"main": "index.js",
"repository": "https://github.com/searchfe/hoth.git",
"author": "cxtom <[email protected]>",
"license": "MIT",
"private": true,
"bin": {
"hoth": "dist/cli.js"
},
"engines": {
"node": ">=12",
"yarn": "^1.22.0"
},
"workspaces": [
"packages/*"
],
"scripts": {
"lint-staged": "lint-staged",
"lint": "eslint src",
"build:example": "yarn workspace hoth-quickstart run build ",
"build": "lerna run build",
"dev": "nodemon",
"versionup": "lerna version --conventional-commits --no-git-tag-version",
"versionup:patch": "lerna version patch --conventional-commits --no-git-tag-version",
"versionup:minor": "lerna version minor --conventional-commits --no-git-tag-version",
"versionup:major": "lerna version major --conventional-commits --no-git-tag-version",
"postversionup": "npm run commit-version",
"postversionup:patch": "npm run commit-version",
"postversionup:minor": "npm run commit-version",
"postversionup:major": "npm run commit-version",
"commit-version": "git add . && git commit -m \"chore(release): bump version\"",
"release": "lerna publish from-package",
"semantic-release": "lerna exec --concurrency 1 -- npx --no-install semantic-release",
"commitlint": "commitlint --from=HEAD^1",
"test": "NODE_ENV=development jest"
},
"lint-staged": {
"**/*.ts": [
"eslint"
]
},
"pre-commit": [
"lint-staged",
"commitlint"
],
"dependencies": {
"lint-staged": "^10.5.4",
"lodash": "^4.17.20",
"sonic-boom": "^1.3.0",
"tslib": "^2.1.0"
},
"devDependencies": {
"@babel/eslint-plugin": "^7.12.13",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@ecomfe/eslint-config": "^7.0.0",
"@lerna/project": "^4.0.0",
"@searchfe/tsconfig": "^1.1.0",
"@types/inquirer": "^7.3.1",
"@types/jest": "^26.0.23",
"@types/node": "^16.11.26",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"esbuild-register": "^2.6.0",
"eslint": "^7.19.0",
"fastify": "^3.19.1",
"form-data": "^4.0.0",
"jest": "^26.6.3",
"jest-date-mock": "^1.0.8",
"jest-mock-console": "^1.1.0",
"jest-mock-process": "^1.4.1",
"lerna": "^4.0.0",
"nodemon": "^2.0.7",
"pre-commit": "^1.2.2",
"source-map-support": "^0.5.19",
"swig": "1.4.0",
"ts-jest": "^26.5.6",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"optionalDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"semantic-release": "^19.0.2",
"semantic-release-monorepo": "^7.0.5"
}
}