This repository has been archived by the owner on Mar 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
52 lines (52 loc) · 1.57 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
{
"name": "argo-ci",
"version": "1.0.0",
"main": "src/app/main.ts",
"license": "MIT",
"scripts": {
"start": "TS_NODE_PROJECT=./src/app/tsconfig.json nodemon --nolazy --inspect -r ts-node/register src/app/main.ts",
"build": "tsc --project ./src/app/tsconfig.json && cp ./src/app/index.html ./dist",
"lint": "tslint --project ./src/app/tsconfig.json",
"docker": "./scripts/build_docker.sh",
"test": "TS_NODE_PROJECT=./src/tests/tsconfig.json mocha --require ts-node/register ./src/tests/**/*spec.ts"
},
"dependencies": {
"async-lock": "^1.1.0",
"bl": "^1.2.1",
"body-parser": "^1.18.2",
"buffer-equal-constant-time": "^1.0.1",
"express": "^4.16.2",
"express-winston": "^3.0.1",
"github-webhook-handler": "^0.7.0",
"js-yaml": "^3.10.0",
"json-stream": "^1.0.0",
"kubernetes-client": "^3.17.1",
"promisify-node": "^0.4.0",
"request": "^2.83.0",
"request-promise-native": "^1.0.5",
"rxjs": "^5.5.6",
"shell-escape": "^0.2.0",
"shelljs": "^0.7.8",
"uuid": "^3.1.0",
"winston": "^3.1.0",
"yargs": "^10.0.3"
},
"devDependencies": {
"@types/chai": "^4.1.0",
"@types/chai-http": "^3.0.3",
"@types/express": "^4.11.0",
"@types/express-winston": "^3.0.0",
"@types/mocha": "^2.2.46",
"@types/node": "8.5.1",
"@types/request": "^2.0.9",
"@types/shelljs": "^0.7.7",
"@types/winston": "^2.4.4",
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"mocha": "^4.1.0",
"nodemon": "^1.12.7",
"ts-node": "^4.0.1",
"tslint": "^5.8.0",
"typescript": "^2.6.2"
}
}