-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.98 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.98 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
62
63
64
65
66
{
"name": "@manniwatch/docker",
"version": "0.27.10",
"description": "Server Helper helper for TrapezeApi",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"private": true,
"keywords": [
"api",
"types"
],
"scripts": {
"build": "tsc -p tsconfig.app.json",
"build:docker": "docker build . -t manniwatch/manniwatch",
"start": "node ./dist/index.js",
"start:docker": "docker run --rm manniwatch/manniwatch",
"test": "mocha --config ../../.mocharc.yml",
"test:coverage": "nyc --nycrc-path ../../.nycrc.json npm run test",
"lint": "eslint -c .eslintrc.js --ext .ts ./src",
"postlint": "prettier --config .prettierrc src/**/*.ts src/*.ts --check",
"lint:fix": "eslint -c .eslintrc.js --ext .ts ./src --fix",
"postlint:fix": "prettier --config .prettierrc src/**/*.ts src/*.ts --write",
"docs": "typedoc --options ../../typedoc.json",
"prepublishOnly": "npm run test && npm run docs && npm run build",
"compose:api": "docker compose -f docker-compose.yml up",
"compose:full": "docker compose -f docker-compose.yml -f docker-compose-full.yml up"
},
"homepage": "https://manniwatch.github.io/docker/",
"author": {
"name": "donmahallem",
"email": "donmahallem@users.noreply.github.com",
"url": "https://github.com/donmahallem"
},
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/manniwatch/docker/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/manniwatch/docker.git"
},
"engines": {
"node": ">=10.0.0"
},
"files": [
"dist/*",
"src/*"
],
"publishConfig": {
"access": "restricted"
},
"dependencies": {
"@manniwatch/api-proxy-server": "~0.28.0",
"@manniwatch/api-types": "~0.28.0",
"express": "~4.17.1"
},
"devDependencies": {
"@donmahallem/eslint-config": "0.2.11",
"@types/express": "4.17.13",
"apidoc": "0.29.0",
"eslint": "7.32.0",
"prettier": "2.4.1",
"supertest": "6.1.6",
"typescript": "4.4.3"
}
}