forked from graphql-compose/graphql-compose-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.42 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.42 KB
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.5.0",
"@babel/core": "7.5.4",
"@babel/node": "7.5.0",
"@babel/plugin-proposal-object-rest-spread": "7.5.4",
"@babel/plugin-transform-flow-strip-types": "7.4.4",
"@babel/preset-env": "7.5.4",
"@babel/preset-flow": "7.0.0",
"aws-sdk": "2.490.0",
"cors": "2.8.5",
"elasticsearch": "16.3.0",
"express": "4.17.1",
"express-graphql": "0.8.0",
"graphql": "14.4.2",
"graphql-compose": "7.2.0",
"graphql-compose-aws": "4.0.1",
"graphql-compose-connection": "6.0.3",
"graphql-compose-elasticsearch": "4.0.4",
"graphql-compose-mongoose": "7.1.0",
"graphql-compose-pagination": "6.0.3",
"graphql-compose-relay": "5.0.2",
"graphql-playground-middleware-express": "1.7.12",
"mongoose": "5.6.4"
},
"devDependencies": {
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.2",
"babel-jest": "24.8.0",
"eslint": "6.0.1",
"eslint-config-airbnb-base": "13.2.0",
"eslint-config-prettier": "6.0.0",
"eslint-plugin-import": "2.18.0",
"eslint-plugin-prettier": "3.1.0",
"flow-bin": "0.102.0",
"jest": "24.8.0",
"mongodb-memory-server": "5.1.5",
"nodemon": "1.19.1",
"prettier": "1.18.2",
"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"
}
}