forked from muneebs/loopback-graphql-relay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3.35 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
100
101
102
103
104
105
106
{
"name": "@jmnribeiro/loopback-graphql-relay",
"description": "Add Relay based Apollo Server or GraphQL queries on your Loopback server",
"version": "2.1.12",
"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 --exit",
"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]>, Abdul Ghaffar <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/BlueEastCode/loopback-graphql-relay/issues"
},
"homepage": "https://github.com/BlueEastCode/loopback-graphql-relay#readme",
"dependencies": {
"apollo-cache-inmemory": "^1.6.3",
"apollo-server-express": "^2.9.3",
"async": "^3.1.0",
"body-parser": "^1.19.0",
"bson-objectid": "^1.3.0",
"chai-as-promised": "^7.1.1",
"event-stream": "^4.0.1",
"graphql": "^14.5.6",
"graphql-date": "1.0.3",
"graphql-relay": "^0.6.0",
"graphql-type-json": "^0.3.0",
"lodash": "^4.17.15",
"loopback": "^3.26.0",
"loopback-filters": "1.0.0",
"promisify-node": "^0.5.0",
"sinon-chai": "^3.3.0"
},
"devDependencies": {
"apollo-client": "^2.6.4",
"apollo-link-http": "^1.5.16",
"babel-eslint": "^10.0.3",
"bluebird": "^3.5.5",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"commitizen": "^4.0.3",
"compression": "^1.7.4",
"conventional-changelog": "^3.1.10",
"conventional-changelog-cli": "^2.0.23",
"cors": "^2.8.5",
"cpx": "1.5.0",
"cpy-cli": "^2.0.0",
"cz-conventional-changelog": "^3.0.2",
"eslint": "^6.4.0",
"eslint-config-blueeast": "0.3.2",
"eslint-config-loopback": "^13.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-nodeca": "1.0.3",
"eslint-plugin-react": "^7.14.3",
"ghooks": "^2.0.4",
"graphql-tag": "^2.10.1",
"helmet": "^3.21.0",
"istanbul": "0.4.5",
"loopback-boot": "^2.28.0",
"loopback-component-explorer": "^6.4.0",
"loopback-datasource-juggler": "^4.12.1",
"mocha": "^6.2.0",
"nodemon": "^1.19.2",
"nsp": "^3.2.1",
"serve-favicon": "^2.5.0",
"sinon": "^7.4.2",
"standard-version": "^7.0.0",
"strong-error-handler": "^3.0.0",
"subscriptions-transport-ws": "^0.9.16",
"validate-commit-msg": "^2.14.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
}
}