-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.17 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 2.17 KB
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": "image-comparison-backend",
"version": "1.3.2",
"description": "Backend of an image comparison solution. It reads the results of image comparisons performed by the image comparison frontend and allows to manage them.",
"main": "dist/index.js",
"license": "GPL-3.0-or-later",
"repository": {
"type": "git",
"url": "https://github.com/jochendiekenbrock/image-comparison-backend"
},
"keywords": [
"ci",
"continous-integration",
"jenkins",
"image comparison"
],
"author": "Jochen Diekenbrock",
"engines": {
"node": ">=10"
},
"scripts": {
"build-server": "tslint --project . && tsc",
"build-docker": "sudo docker build -t jochendiekenbrock/image-comparison-backend .",
"format": "prettier --write './**/*.ts' '**/*.json'",
"lint": "tslint --project .",
"run-docker": "sudo docker run -p 80:3000 -v $(pwd)/public/data:/home/node/app/public/data -d jochendiekenbrock/image-comparison-backend",
"start-dev": "cross-env NODE_ENV=development nodemon -e ts --exec ts-node src/server.ts",
"start": "cross-env NODE_ENV=production node dist/server.js",
"version": "conventional-changelog -i CHANGELOG.md -s && git add CHANGELOG.md"
},
"devDependencies": {
"@types/glob": "7.1.1",
"@types/koa": "2.11.0",
"@types/koa-compress": "2.0.9",
"@types/koa-logger": "3.1.1",
"@types/koa-router": "7.4.0",
"@types/koa-static": "4.0.1",
"@types/koa-views": "2.0.4",
"@types/nunjucks": "3.1.3",
"conventional-changelog-cli": "2.0.31",
"cross-env": "7.0.0",
"image-comparison-frontend": "3.4.0",
"nodemon": "2.0.2",
"prettier": "1.19.1",
"ts-node": "8.6.2",
"tslint": "6.0.0",
"typescript": "3.7.5"
},
"dependencies": {
"date-fns": "2.9.0",
"glob": "7.1.6",
"koa": "2.11.0",
"koa-body": "4.1.1",
"koa-compress": "3.0.0",
"koa-logger": "3.2.1",
"koa-router": "8.0.7",
"koa-static": "5.0.0",
"koa-views": "6.2.1",
"nunjucks": "3.2.0"
}
}