-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
101 lines (101 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
{
"name": "medifor-demo",
"scripts": {
"start": "lerna run --stream start",
"start-silent": "lerna run start",
"debug": "lerna run --stream debug",
"bootstrap": "lerna bootstrap",
"bootstrap-ci": "lerna bootstrap --ci --scope server -- --production && lerna bootstrap --ci --scope client ",
"lint": "lerna run lint",
"clean": "lerna clean -y && lerna run cleanup",
"build": "npm run bootstrap-ci && lerna run build && mkdir -p server/public && cp -rp client/dist/* server/public",
"docker:start": "cd ./pipeline && docker-compose up --remove-orphans -d && cd ..",
"docker:stop": "cd ./pipeline && docker-compose down && cd .."
},
"repository": {
"type": "git",
"url": "https://github.com/mediaforensics/medifor-ui.git"
},
"contributors": [
"Wes Dingman <[email protected]>",
"Edgardo Vega <[email protected]"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "echo $HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"server/**/*.{js,scss}": [
"lerna run lint --scope=server --",
"git add"
],
"client/**/*.{vue}": [
"lerna run lint --scope=client --",
"git add"
]
},
"release": {
"branches": [
"master",
{
"name": "develop",
"channel": "rc",
"prerelease": "rc"
}
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits",
"parserOpts": {
"noteKeywords": [
"BREAKING CHANGE",
"BREAKING CHANGES"
]
}
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits",
"parserOpts": {
"noteKeywords": [
"BREAKING CHANGE",
"BREAKING CHANGES",
"BREAKING"
]
},
"writerOpts": {
"commitsSort": [
"subject",
"scope"
]
}
}
],
[
"@semantic-release/exec",
{
"prepareCmd": "echo ${nextRelease.version} > version.txt"
}
],
[
"@semantic-release/gitlab",
{}
]
]
},
"devDependencies": {
"@semantic-release/exec": "^5.0.0",
"@semantic-release/gitlab": "^6.0.4",
"conventional-changelog-conventionalcommits": "^4.5.0",
"husky": "^4.3.8",
"lerna": "^3.22.1",
"lint-staged": "^9.5.0",
"semantic-release": "^17.3.8"
}
}