generated from khaosdoctor/template-node-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.76 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
{
"name": "typescript-blockchain-implementation",
"version": "0.0.0-development",
"description": "Template project for node.js and Typescript with workflows and semantic releasing",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watchAll",
"build": "tsc",
"clean": "rm -rf dist tsconfig.tsbuildinfo",
"build:clean": "npm run clean && npm run build",
"lint": "eslint src/**/*.ts",
"lint:fix": "npm run lint -- --fix",
"start": "node dist/index.js",
"start:dev": "tsnd --rs ./src/index.ts",
"semantic-release": "semantic-release"
},
"contributors": [
{
"email": "wm4tos.777@gmail.com",
"name": "Wesley Matos",
"url": "https://blog.wmatos.dev"
},
{
"email": "hello@lsantos.dev",
"name": "Lucas Santos",
"url": "https://info.lsantos.dev"
}
],
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/ologbonowiwi/typescript-blockchain-implementation/issues"
},
"homepage": "https://github.com/ologbonowiwi/typescript-blockchain-implementation#readme",
"repository": {
"type": "git",
"url": "https://github.com/ologbonowiwi/typescript-blockchain-implementation"
},
"devDependencies": {
"@commitlint/cli": "^16.1.0",
"@commitlint/config-conventional": "^16.0.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.2",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/chance": "^1.1.3",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"chance": "^1.1.8",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-editorconfig": "^3.2.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"husky": "^7.0.4",
"jest": "^27.4.7",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"ts-node": "^10.4.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.5"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"release": {
"branches": [
"main"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "angular",
"releaseRules": [
{
"type": "docs",
"release": "patch"
}
]
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/github",
"@semantic-release/git"
]
}
}