-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
65 lines (65 loc) · 2.12 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
{
"name": "grapqlproxy",
"version": "1.0.0",
"description": "A generic Graphql Proxy",
"main": "index.js",
"scripts": {
"precommit": "yarn lint",
"prepush": "npm test",
"prepkg-docker": "yarn build",
"dev": "tsc -w -p . --skipLibCheck",
"build": "tsc -p . --skipLibCheck",
"start": "npm run build &&dockerNetwork=web gqlProxyToken=1234 node dist/main.js",
"startDev": "dockerNetwork=web gqlProxyToken=1234 gqlProxyAdminUser=admin gqlProxyAdminPassword=test1234 nodemon dist/main.js",
"startDevDockerWatcher": "qglProxyRuntime=dockerWatch dockerNetwork=web gqlProxyToken=1234 nodemon dist/main.js",
"startDevK8sWatcher": "gqlProxyToken=1234 qglProxyRuntime=kubernetesWatch nodemon dist/main.js",
"test": "jest .",
"lint": "tslint -p . --fix",
"pkg-docker": "pkg dist/main.js --targets node9-alpine-x64 --output pkg/app",
"pkg-docker-healthcheck": "pkg ./healthcheck.js --targets node9-alpine-x64 --output pkg/healthcheck"
},
"author": "fasibio",
"license": "ISC",
"dependencies": {
"apollo-link-context": "1.0.10",
"apollo-link-http": "1.5.7",
"apollo-server-express": "2.2.5",
"babel-core": "6.26.3",
"babel-plugin-syntax-trailing-function-commas": "6.22.0",
"babel-preset-es2015": "6.24.1",
"cloner": "0.4.0",
"cluster": "0.7.7",
"express": "4.16.4",
"express-basic-auth": "1.1.6",
"graphql": "14.0.2",
"graphql-tools": "4.0.3",
"graphql-weaver": "0.13.0",
"json-stream": "1.0.0",
"kubernetes-client": "6.4.1",
"node-docker-api": "1.1.22",
"node-docker-monitor": "1.0.11",
"node-fetch": "2.3.0",
"sort-object": "3.0.2",
"typescript": "3.2.1",
"winston": "3.1.0"
},
"devDependencies": {
"@types/jest": "23.3.10",
"@types/node-fetch": "2.1.4",
"babel-jest": "23.6.0",
"electron": "3.0.10",
"husky": "1.2.0",
"jasmine-reporters": "2.3.2",
"jest": "23.6.0",
"jsdom": "13.0.0",
"nodemon": "1.18.7",
"pkg": "4.3.1",
"shebang-loader": "0.0.1",
"ts-jest": "23.10.5",
"tslint": "5.11.0",
"tslint-config-airbnb": "5.11.1"
},
"pkg": {
"scripts": "**/*.js"
}
}