-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
105 lines (105 loc) · 2.53 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "fastify-boot",
"version": "1.1.0",
"description": "A Spring Boot inspired opinionated view on building and bootstrapping a Fastify web application.",
"keywords": [
"fastify",
"rest",
"fastify-boot",
"api",
"server",
"decorators",
"typescript"
],
"repository": "https://github.com/burketyler/fastify-boot",
"author": "Tyler Burke",
"main": ".build/src/index.js",
"types": ".build/src/index.d.ts",
"license": "MIT",
"files": [
".build",
"webpack.config.js",
"jest.config.js",
"bootstrap.js",
"dotenv.js"
],
"publishConfig": {
"access": "public"
},
"bin": {
"fastify-boot": ".build/bin/cli.js"
},
"scripts": {
"clean": "rm -rf .build",
"build": "yarn clean && tsc && chmod +x .build/bin/cli.js",
"prettier": "prettier --check src/**/*.ts --loglevel error",
"lint": "eslint -c .eslintrc src/**/*.ts",
"verify": "yarn prettier && yarn lint",
"cm": "git-cz"
},
"dependencies": {
"@types/jest": "27.0.2",
"@typescript-eslint/eslint-plugin": "5.3.1",
"@typescript-eslint/parser": "5.3.1",
"chalk": "4.1.2",
"cross-spawn": "7.0.3",
"dotenv": "10.0.0",
"eslint": "8.2.0",
"eslint-config-prettier": "8.3.0",
"jest": "27.3.1",
"reflect-metadata": "0.1.13",
"ts-injection": "1.2.0",
"ts-jest": "27.0.7",
"ts-loader": "9.2.6",
"tslib": "2.3.1",
"webpack": "5.62.1",
"webpack-node-externals": "3.0.0",
"yargs": "17.2.1"
},
"devDependencies": {
"@semantic-release/git": "10.0.1",
"@types/cross-spawn": "6.0.2",
"@types/node": "16.11.7",
"@types/webpack-env": "1.16.3",
"commitizen": "4.2.4",
"commitlint": "14.1.0",
"cz-customizable": "6.3.0",
"fastify": "3.23.1",
"prettier": "2.4.1",
"semantic-release": "18.0.0",
"typescript": "4.3.5"
},
"release": {
"branches": [
"master"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"package.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": "commitizen.config.js"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}