-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
75 lines (75 loc) · 2 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
{
"name": "all-the-databases",
"version": "0.1.0",
"description": "A GraphQL server tutorial combining 5 data sources",
"scripts": {
"start": "./node_modules/.bin/babel-node ./server.js",
"dev": "nodemon ./server.js --exec babel-node",
"lint": "eslint .",
"deploy": "now -d -e REDIS_URI=@compose-redis-uri -e POSTGRES_URI=@compose-postgres-uri -e MONGO_URI=@compose-mongo-uri -e ES_URI=@compose-es-uri -e NODE_ENV=production",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GraphQLGuide/all-the-databases.git"
},
"keywords": [
"Node.js",
"Javascript",
"GraphQL",
"Express",
"Apollo",
"Meteor"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/GraphQLGuide/all-the-databases/issues"
},
"homepage": "https://github.com/GraphQLGuide/all-the-databases#readme",
"dependencies": {
"babel-cli": "6.5.1",
"babel-core": "^6.5.2",
"babel-eslint": "^6.0.0-beta.6",
"babel-polyfill": "6.5.0",
"babel-preset-es2015": "6.5.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "6.5.0",
"body-parser": "^1.15.2",
"casual": "^1.5.2",
"elasticsearch": "^11.0.1",
"express": "4.13.4",
"graphql": "^0.8.2",
"graphql-server-express": "^0.4.3",
"graphql-tools": "^0.8.4",
"lodash": "^4.11.1",
"mongoose": "^4.4.12",
"pg": "^6.1.2",
"redis": "^2.6.2",
"request-promise": "^3.0.0",
"sequelize": "^3.21.0",
"sqlite": "0.0.4"
},
"devDependencies": {
"eslint": "^2.4.0",
"eslint-config-airbnb": "^6.1.0",
"eslint-plugin-import": "^1.1.0",
"eslint-plugin-react": "^4.2.3",
"nodemon": "^1.9.1"
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": [
"airbnb/base",
"plugin:import/errors"
],
"rules": {
"no-use-before-define": 0,
"arrow-body-style": 0,
"dot-notation": 0,
"no-console": 0
},
"env": {
"mocha": true
}
}
}