This repository has been archived by the owner on Jul 8, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
71 lines (71 loc) · 2.63 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
69
70
71
{
"name": "launcher-creator-backend",
"version": "1.0.0",
"description": "Root package for the App Creator Backend",
"repository": "[email protected]:fabric8-launcher/launcher-creator-backend",
"author": "Tako Schotanus <[email protected]>",
"license": "Apache-2.0",
"private": true,
"scripts": {
"install": "./install.sh",
"postinstall": "npm run build",
"clean": "rm -rf ./dist",
"build": "./build.sh",
"start": "NODE_PATH=dist/lib:dist/catalog node $NODE_DEBUG_OPTION dist/lib/server.js",
"start:dev": "NODE_PATH=lib:catalog ts-node ./lib/server.ts 8081",
"apply": "NODE_PATH=lib:catalog ts-node ./lib/cli/apply.ts",
"deploy": "NODE_PATH=lib:catalog ts-node ./lib/cli/deploy.ts",
"zip": "NODE_PATH=lib:catalog ts-node ./lib/cli/zip.ts",
"push": "NODE_PATH=lib:catalog ts-node ./lib/cli/push.ts",
"delete": "NODE_PATH=lib:catalog ts-node ./lib/cli/delete.ts",
"analyze": "NODE_PATH=lib:catalog ts-node ./lib/cli/analyze.ts",
"generate": "NODE_PATH=lib:catalog ts-node ./lib/cli/generate.ts",
"debug": "NODE_PATH=lib:catalog node --inspect-brk ./node_modules/.bin/ts-node --transpile-only lib/server.ts 8081",
"debug-apply": "NODE_PATH=lib:catalog node --inspect-brk ./node_modules/.bin/ts-node --transpile-only lib/core/deploy/apply.ts",
"lint": "tslint -c tslint.json -t verbose --project .",
"test": "npm run build && NODE_PATH=dist/lib:dist/catalog node node_modules/tape/bin/tape ./dist/test/**/*.test.js | tap-spec",
"ittest": "NODE_PATH=lib:catalog mocha --opts it-test/mocha.opts -r ts-node/register it-test/all-tests.ts",
"watch": "nodemon $NODE_DEBUG_OPTION"
},
"dependencies": {
"archiver": "3.0.0",
"body-parser": "1.18.3",
"child-process-promise": "2.2.1",
"cors": "2.8.5",
"express": "4.16.4",
"fast-glob": "2.2.4",
"fs-extra": "7.0.1",
"http-status-codes": "1.3.0",
"js-yaml": "3.12.0",
"lodash": "4.17.11",
"node-cache": "4.2.0",
"raven": "2.6.4",
"request": "2.88.0",
"shortid": "2.2.14",
"stream-to-string": "1.1.0",
"tmp-promise": "^1.0.5"
},
"devDependencies": {
"@types/cors": "2.8.4",
"@types/express": "4.16.0",
"@types/fs-extra": "5.0.4",
"@types/lodash": "4.14.118",
"@types/mocha": "^5.2.5",
"@types/node-cache": "4.1.1",
"@types/shortid": "0.0.29",
"@types/tape": "^4.2.32",
"eslint": "5.9.0",
"mocha": "^5.2.0",
"system-sleep": "^1.3.6",
"tap-spec": "5.0.0",
"tape": "4.9.1",
"ts-node": "7.0.1",
"tslint": "5.11.0",
"typescript": "3.1.6"
},
"workspaces": [
"lib/core/*",
"catalog/generators/*",
"catalog/capabilities/*"
]
}