-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 2.03 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
{
"author": "P4sca1",
"name": "egmrp-daemon",
"description": "Daemon for the EGM:RP roleplay framework, mainly used for multi server networking.",
"version": "2.1.5",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Einfach-Gaming/egmrp-daemon.git"
},
"type": "module",
"scripts": {
"build": "tsc --project ./tsconfig.json",
"dev": "nodemon",
"start": "node ./dist/main.js",
"lint": "eslint \"src/**/*.{js,ts}\"",
"lint:fix": "eslint --fix \"src/**/*.{js,ts}\"",
"tsc:check": "tsc --project ./tsconfig.json --noEmit",
"prepack": "yarn build"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.1",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"@tsconfig/node18-strictest-esm": "1.0.1",
"@types/node": "18.11.9",
"@types/semantic-release": "17.2.4",
"@typescript-eslint/eslint-plugin": "5.43.0",
"@typescript-eslint/parser": "5.43.0",
"@typescript-eslint/typescript-estree": "5.43.0",
"dotenv": "16.0.3",
"eslint": "8.28.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"nodemon": "2.0.20",
"pino-pretty": "9.1.1",
"prettier": "2.7.1",
"semantic-release": "19.0.5",
"semantic-release-docker": "2.2.0",
"ts-node": "10.9.1",
"typescript": "4.9.3"
},
"dependencies": {
"pino": "8.7.0",
"yup": "0.32.11"
},
"release": {
"branches": [
"master"
],
"preset": "angular",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/github",
"@semantic-release/git",
[
"@semantic-release/exec",
{
"prepareCmd": "docker build -t ghcr.io/einfach-gaming/egmrp-daemon ."
}
],
[
"semantic-release-docker",
{
"name": "ghcr.io/einfach-gaming/egmrp-daemon",
"registryUrl": "ghcr.io"
}
]
]
}
}