-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
99 lines (99 loc) · 3.06 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
91
92
93
94
95
96
97
98
99
{
"name": "loopback-graphql-relay",
"version": "0.9.0",
"description": "Add Relay based Apollo Server or GraphQL queries on your Loopback server",
"main": "src/index.js",
"directories": {
"test": "test"
},
"scripts": {
"commit": "git-cz",
"eslint": "eslint .",
"lint": "npm run eslint",
"data": "cpx ./data.json ./data/",
"pretest": "npm run eslint && npm run data",
"test": "mocha --reporter spec --timeout 10000",
"start": "node server/server.js",
"nodemon": "nodemon server/server.js",
"debug": "nodemon server/server.js --debug-brk=5858",
"mocha:coverage": "istanbul cover --root . --include-all-sources --dir ./coverage --report text --report text-summary --report lcov --print none _mocha -- test/**/*.spec.js --reporter spec --timeout 10000",
"test:watch": "mocha -R nyan -w --timeout 10000",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"release": "standard-version",
"publish:patch": "npm run test && npm version patch && npm run changelog"
},
"repository": {
"url": "git+https://github.com/BlueEastCode/loopback-graphql-relay.git",
"type": "git"
},
"keywords": [
"Loopback",
"GraphQL",
"Apollo",
"Express",
"Javascript",
"REST",
"APIs"
],
"author": "Abdul Rehman Talat <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/BlueEastCode/loopback-graphql-relay/issues"
},
"homepage": "https://github.com/BlueEastCode/loopback-graphql-relay#readme",
"dependencies": {
"async": "^2.4.0",
"body-parser": "^1.15.2",
"event-stream": "^3.3.4",
"graphql": "^0.9.5",
"graphql-date": "^1.0.2",
"graphql-relay": "^0.5.1",
"graphql-server-express": "^0.7.2",
"graphql-type-json": "^0.1.4",
"lodash": "^4.16.3",
"promisify-node": "^0.4.0",
"subscriptions-transport-ws": "^0.5.5-alpha.0"
},
"devDependencies": {
"apollo-client": "^0.8.5",
"babel-eslint": "^7.0.0",
"bluebird": "^3.4.6",
"chai": "^3.5.0",
"chai-http": "^3.0.0",
"commitizen": "^2.8.6",
"compression": "^1.0.3",
"conventional-changelog": "^1.1.0",
"conventional-changelog-cli": "^1.2.0",
"cors": "^2.5.2",
"cpx": "^1.5.0",
"cpy-cli": "^1.0.1",
"cz-conventional-changelog": "^1.2.0",
"eslint": "^3.7.1",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-nodeca": "^1.0.3",
"eslint-plugin-react": "^6.10.0",
"ghooks": "^1.3.2",
"graphql-tag": "^1.0.0",
"helmet": "^3.1.0",
"istanbul": "^0.4.5",
"loopback": "^3.1.1",
"loopback-boot": "^2.6.5",
"loopback-component-explorer": "^4.0.0",
"loopback-datasource-juggler": "^3.1.1",
"mocha": "^3.1.0",
"nodemon": "^1.10.2",
"nsp": "^2.1.0",
"serve-favicon": "^2.0.1",
"sinon": "^1.17.6",
"standard-version": "^4.0.0",
"strong-error-handler": "^1.0.1",
"validate-commit-msg": "^2.8.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}