-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
90 lines (90 loc) · 2.61 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "subkit",
"version": "5.4.4",
"description": "GraphQL APIs made fast and easy.",
"repository": {
"type": "git",
"url": "git+/~https://github.com/codecommission/subkit.git"
},
"author": "Mike Bild <mike@codecommission.com>",
"license": "MIT",
"bugs": {
"url": "/~https://github.com/codecommission/subkit/issues"
},
"homepage": "/~https://github.com/codecommission/subkit#readme",
"main": "./lib/index.js",
"bin": {
"subkit": "./bin/subkit"
},
"keywords": [
"http",
"graphql",
"subscription",
"directive",
"server"
],
"scripts": {
"dev": "nodemon --ext gql,sdl,js --exec ./bin/subkit serve --port 8080 --graphiql --analysis 1000 --extentions",
"dev:jwt": "nodemon --ext gql,sdl,js --exec ./bin/subkit serve --port 8080 --secret SuperSecret --graphiql --analysis 1000 --extentions",
"dev:mocked": "nodemon --ext gql,sdl,js --exec ./bin/subkit serve --port 8080 --mocked --graphiql --analysis 1000",
"start": "./bin/subkit serve --port 8080 --secret SuperSecret --graphiql --analysis 1000 --log-format json --log-style extended",
"test": "mocha --require babel-polyfill --require babel-register",
"test:watch": "mocha --watch --require babel-polyfill --require babel-register",
"commit": "git-cz"
},
"babel": {
"presets": [
"env"
]
},
"dependencies": {
"JSONStream": "1.3.1",
"babel-cli": "6.26.0",
"babel-polyfill": "6.26.0",
"babel-preset-env": "1.6.0",
"babel-register": "6.26.0",
"body-parser": "1.18.2",
"boxen": "1.2.1",
"chalk": "2.1.0",
"commander": "2.12.2",
"cors": "2.8.4",
"es6-template-strings": "2.0.1",
"eventsource": "1.0.5",
"express": "4.16.2",
"express-graphql": "0.6.11",
"express-jwt": "5.3.0",
"fs-extra": "4.0.2",
"graphql": "0.11.7",
"graphql-subscriptions": "0.5.5",
"graphql-tag": "2.5.0",
"graphql-tools": "2.9.0",
"graphql-type-json": "0.1.4",
"isomorphic-fetch": "2.2.1",
"json-query": "2.2.2",
"jsonwebtoken": "8.1.0",
"lodash": "4.17.4",
"lru-cache": "4.1.1",
"morgan": "1.9.0",
"morgan-json": "1.1.0",
"node-version": "1.1.0",
"object-hash": "1.2.0",
"shelljs": "0.7.8",
"subkit-graphiql": "0.2.6",
"subscriptions-transport-sse": "0.9.2",
"dataloader": "1.3.0",
"through": "2.3.8",
"update-notifier": "2.3.0",
"uuid": "3.1.0"
},
"devDependencies": {
"commitizen": "2.9.6",
"cz-conventional-changelog": "2.0.0",
"mocha": "4.0.1",
"nodemon": "1.14.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}