-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.41 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
{
"name": "name-contests-api",
"version": "1.0.0",
"description": "Name contests API",
"author": "George Obiero",
"license": "ISC",
"scripts": {
"start": "node lib/index.js",
"start:dev": "nodemon --exec node lib/index.js",
"test": "mocha */*.spec.js --exit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/devobiero/name-contests.git"
},
"keywords": [
"graphql"
],
"bugs": {
"url": "https://github.com/devobiero/name-contests/issues"
},
"homepage": "https://github.com/devobiero/name-contests#readme",
"dependencies": {
"dataloader": "^1.4.0",
"express": "^4.17.1",
"express-graphql": "^0.8.0",
"graphql": "^14.3.1",
"humps": "^2.0.1",
"lodash": "^4.17.13",
"mongodb": "^2.1.18",
"pg": "^6.0.1"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.3",
"mocha": "^6.1.4",
"nodemon": "^1.9.2",
"supertest": "^4.0.2"
},
"eslintConfig": {
"extends": "airbnb-base",
"env": {
"es6": true,
"browser": true
},
"rules": {
"brace-style": [
"error",
"stroustrup"
],
"comma-dangle": [
"error",
"never"
],
"no-unused-vars": [
"warn"
],
"no-var": [
"off"
],
"one-var": [
"off"
]
}
}
}