forked from arpel/double-take
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.54 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
{
"name": "double-take",
"version": "1.13.11.8",
"description": "Unified UI and API for processing and training images for facial recognition",
"scripts": {
"prepare": "husky install",
"frontend": "cd ./frontend && npm run serve",
"frontend-build": "cd ./frontend && npm run build",
"api": "exec node 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",
"start": "cd ./frontend && npm run build && cd .. && NODE_ENV=\"development\" node api/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/skrashevich/double-take.git"
},
"engines": {
"node": ">=18.0.0 <19.0.0"
},
"author": "Sergei Krashevich",
"license": "MIT",
"bugs": {
"url": "https://github.com/skrashevich/double-take/issues"
},
"homepage": "https://github.com/skrashevich/double-take#readme",
"devDependencies": {
"@playwright/test": "^1.40.0",
"@types/node": "^18.18.0",
"eslint": "^8.34.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.1",
"nodemon": "^2.0.16",
"prettier": "^2.8.4"
},
"dependencies": {
"axios": "^1.2.1",
"form-data": "^4.0.0"
}
}