forked from jakowenko/double-take
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.9 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
{
"name": "double-take",
"version": "1.7.0",
"description": "Unified UI and API for processing and training images for facial recognition",
"scripts": {
"prepare": "husky install",
"frontend": "cd ./frontend && npm run serve",
"api": "exec nodemon -e yml,js --watch ./.storage/config --watch ./api -q api/server.js || true",
"bump": "npm version $VERSION --no-git-tag-version --allow-same-version && cd ./api && npm version $VERSION --no-git-tag-version --allow-same-version && cd ../frontend && npm version $VERSION --no-git-tag-version --allow-same-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jakowenko/double-take.git"
},
"author": "David Jakowenko",
"license": "MIT",
"bugs": {
"url": "https://github.com/jakowenko/double-take/issues"
},
"homepage": "https://github.com/jakowenko/double-take#readme",
"devDependencies": {
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@semantic-release/changelog": "^6.0.0",
"@semantic-release/exec": "^6.0.1",
"@semantic-release/git": "^10.0.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"nodemon": "^2.0.14",
"prettier": "^2.4.1",
"semantic-release": "^18.0.0"
},
"release": {
"branches": [
"master"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
[
"@semantic-release/exec",
{
"prepareCmd": "VERSION=${nextRelease.version} npm run bump"
}
],
"@semantic-release/git",
"@semantic-release/github"
]
}
}