-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
68 lines (68 loc) · 1.99 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
68
{
"name": "helium",
"version": "1.0.0",
"description": "Azure App Service reference application.",
"main": "dist/server.js",
"directories": {
"test": "tests"
},
"scripts": {
"start": "node dist/server.js",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"test-unit": "sh ./scripts/run-unit-tests.sh",
"test-integration": "mocha --reporter spec --timeout 5000 --compilers ts:ts-node/register '**/*.integration.ts'",
"build": "gulp scripts",
"docker-build": "docker build -t helium:canary .",
"docker-run": "docker run -it -p 8080:8080 helium:canary"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Microsoft/helium.git"
},
"author": "aka",
"license": "MIT",
"bugs": {
"url": "https://github.com/Microsoft/helium/issues"
},
"homepage": "https://github.com/Microsoft/helium#readme",
"dependencies": {
"@types/body-parser": "^1.17.0",
"@types/documentdb": "^1.10.5",
"@types/restify": "^7.2.9",
"applicationinsights": "^1.3.1",
"azure-keyvault": "^3.0.4",
"body-parser": "^1.18.3",
"bunyan": "^1.8.12",
"class-validator": "^0.9.1",
"documentdb": "^1.15.3",
"http-status-codes": "^1.3.2",
"inversify": "^5.0.1",
"inversify-restify-utils": "^3.4.0",
"ms-rest-azure": "^2.6.0",
"reflect-metadata": "^0.1.13",
"restify": "^8.3.0",
"restify-errors": "^7.0.0",
"restify-plugins": "^1.6.0",
"swagger-jsdoc": "^3.2.9",
"swagger-ui-dist": "^3.22.2",
"ts-node": "^3.3.0",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/chai-http": "0.0.29",
"@types/mocha": "^2.2.48",
"apidoc": "^0.17.7",
"apidoc-swagger": "^0.3.0",
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"gulp": "^3.9.1",
"gulp-apidoc-swagger": "^0.2.2",
"gulp-typescript": "^3.1.1",
"mocha": "^3.1.2",
"mocha-junit-reporter": "^1.22.0",
"tslint": "^5.16.0",
"typescript": "^3.4.4",
"typescript-tslint-plugin": "^0.3.1"
}
}