-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 1.98 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
{
"name": "soil-domain-service",
"version": "1.1.0",
"description": "Domain service for soil samples",
"author": "Bx",
"license": "UNLICENSED",
"scripts": {
"lint": "eslint . --ext ts,tsx && npm run prettier",
"prettier": "npx prettier -w '**/*.(js|json)'",
"init": "./bin/init.sh && husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/Bx-LOOOP/soil-domain-service.git"
},
"engines": {
"node": ">14.14"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@semantic-release/exec": "^5.0.0",
"@semantic-release/git": "^9.0.0",
"@tsconfig/node14": "^1.0.0",
"@types/jest": "^26.0.23",
"@types/node": "^14.17.2",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"eslint": "^7.28.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"prettier": "2.3.0",
"semantic-release-plus": "^18.3.0",
"ts-jest": "^26.5.6",
"ts-loader": "^9.2.3",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
},
"release": {
"branches": [
"main"
],
"commitPaths": [
".",
":(exclude)*.md"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"pkgRoot": "src/dist"
}
],
[
"@semantic-release/npm",
{
"pkgRoot": "deploy/dist"
}
],
"@semantic-release/github",
[
"@semantic-release/exec",
{
"prepareCmd": "npm run prettier"
}
],
[
"@semantic-release/git",
{
"assets": [
"src/package.json",
"deploy/package.json"
]
}
]
]
}
}