-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
78 lines (78 loc) · 2.04 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
{
"name": "perfect-graphql-starter",
"private": true,
"version": "1.0.0",
"description": "'Perfect' set of code to write a GraphQL server with Apollo",
"engine": "node >= 5.11.1",
"repository": {
"type": "git",
"url": "git+https://github.com/Quadric/perfect-graphql-starter.git"
},
"keywords": [
"Node.js",
"Javascript",
"GraphQL",
"Express",
"Apollo",
"Meteor"
],
"author": "Victor Duarte <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Quadric/perfect-graphql-starter/issues"
},
"homepage": "https://github.com/Quadric/perfect-graphql-starter#readme",
"scripts": {
"start": "nodemon server/index.js",
"debug": "nodemon server/index.js --exec babel-node-debug",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"apollo-server": "^0.2.6",
"body-parser": "^1.15.2",
"casual": "^1.5.3",
"express": "4.14.0",
"graph-object": "^1.0.0",
"graphql": "^0.7.0",
"graphql-tools": "^0.6.5",
"lodash": "^4.15.0",
"mongodb": "^3.6.1"
},
"devDependencies": {
"babel-cli": "6.14.0",
"babel-core": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-loader": "6.2.5",
"babel-node-debug": "^2.0.0",
"babel-plugin-inline-import": "^2.0.1",
"babel-plugin-transform-class-properties": "^6.11.5",
"babel-polyfill": "6.13.0",
"babel-preset-es2015": "6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "6.5.0",
"babel-root-slash-import": "^1.1.0",
"eslint": "^3.4.0",
"eslint-config-airbnb": "^10.0.1",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-react": "^6.2.0",
"nodemon": "^1.10.2"
},
"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
}
}
}