-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
61 lines (61 loc) · 2.03 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
{
"name": "boilerplate-typescript-rest-docker",
"version": "0.0.2",
"description": "How to use TypeScript & Docker building a REST service with debugging enabled (e.g. WebStorm or VSCode).",
"main": " ./dist/index.js",
"scripts": {
"start": "npm run transpile && node ./dist/src/index.js",
"start:debug": "npm run transpile && node --debug=5858 ./dist/src/index.js",
"start:dev": "nodemon --watch src -L --exec npm run start:debug",
"transpile": "node ./node_modules/typescript/bin/tsc --listEmittedFiles",
"test": "npm run test:unit && npm run test:integration",
"test:unit": "mocha ./test/unit/**/*.spec.ts --require ts-node/register",
"test:integration": "mocha ./test/integration/**/*.spec.ts --require ts-node/register --timeout=60000",
"lint": "echo \"Not configured, yet\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stefanwalther/boilerplate-typescript-rest-docker.git"
},
"keywords": [
"TypeScript",
"REST",
"docker",
"container",
"debugging",
"remote-debugging",
"nodemon",
"webstorm",
"nodemon"
],
"author": "Stefan Walther <swrqtch@gmail.com> (http://qliksite.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/stefanwalther/boilerplate-typescript-rest-docker/issues"
},
"homepage": "https://github.com/stefanwalther/boilerplate-typescript-rest-docker#readme",
"devDependencies": {
"chai": "5.1.2",
"mocha": "3.5.3",
"promise-retry": "1.1.1",
"supertest": "6.3.4",
"supertest-as-promised": "4.0.2",
"ts-node": "10.9.2",
"tslint": "3.15.1",
"tslint-microsoft-contrib": "2.0.14",
"typescript": "2.9.2"
},
"dependencies": {
"@types/body-parser": "0.0.33",
"@types/chai": "^5.0.0",
"@types/express": "^4.0.33",
"@types/mocha": "^2.2.32",
"@types/node": "^6.0.46",
"@types/supertest": "^6.0.0",
"@types/supertest-as-promised": "^2.0.32",
"body-parser": "^1.15.2",
"express": "^4.14.0",
"install": "^0.8.2",
"npm": "^3.10.9"
}
}