-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.95 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
62
63
64
65
66
67
{
"name": "@manniwatch/docker",
"version": "0.28.3",
"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"
},
"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.29.16",
"@manniwatch/api-types": "~0.29.16",
"express": "~4.21.1"
},
"devDependencies": {
"@donmahallem/eslint-config": "1.0.54",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/express": "5.0.0",
"apidoc": "1.2.0",
"eslint": "8.57.1",
"prettier": "2.8.8",
"semantic-release": "24.2.0",
"supertest": "7.0.0",
"typescript": "4.9.5"
}
}