-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.47 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
{
"name": "rex",
"version": "1.0.0",
"license": "MIT",
"private": true,
"repository": "https://github.com/MauriceNino/rex",
"author": "MauriceNino <mauriceprivat98@gmail.com>",
"bugs": {
"url": "https://github.com/MauriceNino/rex/issues"
},
"scripts": {
"build": "webpack",
"start": "node dist/index.js",
"dev": "nodemon --inspect src/index.ts",
"test": "eslint ."
},
"packageManager": "yarn@3.5.0",
"dependencies": {
"chalk": "4.1.2",
"express": "4.18.2",
"wildcard-match": "5.1.2"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/express": "4.17.17",
"@types/node": "18.16.0",
"@typescript-eslint/eslint-plugin": "5.59.0",
"@typescript-eslint/parser": "5.59.0",
"eslint": "8.39.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-simple-import-sort": "10.0.0",
"nodemon": "2.0.22",
"prettier": "2.8.8",
"semantic-release-plus": "20.0.0",
"ts-loader": "9.4.2",
"ts-node": "10.9.1",
"typescript": "5.0.4",
"webpack": "5.81.0",
"webpack-cli": "5.0.2"
},
"release": {
"branches": [
"main"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"releaseRules": [
{
"type": "docs",
"release": "patch"
},
{
"type": "chore",
"release": "patch"
},
{
"type": "refactor",
"release": "patch"
}
]
}
],
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": ".github/CHANGELOG.md"
}
],
[
"@semantic-release/github",
{
"successComment": ":tada: This issue has been resolved in version ${nextRelease.version}\n\nPlease check the [changelog](https://github.com/MauriceNino/dashdot/blob/main/.github/CHANGELOG.md) for more details.",
"failComment": false,
"failTitle": false,
"labels": false,
"releasedLabels": false
}
],
[
"@semantic-release/git",
{
"assets": [
".github/CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [CI SKIP]\n\n${nextRelease.notes}"
}
]
]
}
}