forked from graphql-compose/graphql-compose-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.45 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
{
"name": "graphql-compose-examples",
"version": "0.0.1",
"description": "Examples of graphql-compose",
"engines": {
"node": "8.10.0",
"yarn": "1.7.0"
},
"files": [
"lib"
],
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/nodkz/graphql-compose-examples.git"
},
"keywords": [
"graphql",
"graphql-compose",
"graphql-compose-mongoose",
"graphql-compose-elasticsearch",
"graphql-compose-aws"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/nodkz/graphql-compose-examples/issues"
},
"homepage": "https://github.com/nodkz/graphql-compose-examples",
"dependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/node": "^7.2.2",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-transform-flow-strip-types": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/preset-flow": "^7.0.0",
"aws-sdk": "^2.444.0",
"cors": "^2.8.5",
"elasticsearch": "^15.4.1",
"express": "^4.16.4",
"express-graphql": "^0.8.0",
"graphql": "14.2.1",
"graphql-compose": "^7.0.1",
"graphql-compose-aws": "^4.0.0",
"graphql-compose-connection": "^6.0.2",
"graphql-compose-elasticsearch": "^4.0.0",
"graphql-compose-mongoose": "^7.0.1",
"graphql-compose-pagination": "^6.0.2",
"graphql-compose-relay": "^5.0.1",
"graphql-playground-middleware-express": "^1.7.12",
"mongoose": "^5.5.4"
},
"devDependencies": {
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.7.1",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.2.0",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-prettier": "^3.0.1",
"flow-bin": "0.98.0",
"jest": "^24.7.1",
"mongodb-memory-server": "^5.1.0",
"nodemon": "^1.18.11",
"prettier": "^1.17.0",
"request": "^2.88.0"
},
"scripts": {
"build": "npm run buildSchema",
"seed": "./node_modules/.bin/babel-node ./scripts/seed.js",
"buildSchema": "./node_modules/.bin/babel-node ./scripts/buildSchema.js",
"start": "npm run seed && babel-node index.js",
"start:watch": "nodemon index.js -e js --exec babel-node",
"watch": "jest --watch",
"coverage": "jest --coverage --maxWorkers 2",
"lint": "eslint --ext .js ./examples",
"flow": "./node_modules/.bin/flow",
"test": "npm run coverage && npm run lint && npm run flow"
}
}