-
-
Notifications
You must be signed in to change notification settings - Fork 99
/
package.json
35 lines (35 loc) · 1.32 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
{
"name": "double-take",
"version": "1.13.1",
"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",
"lint:eslint": "eslint --fix",
"lint:prettier": "prettier --write --loglevel warn"
},
"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": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"eslint": "^8.17.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"nodemon": "^2.0.16",
"prettier": "^2.6.2"
}
}