-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.89 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.89 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
{
"name": "graphql_tests",
"version": "1.0.0",
"description": "boilerplate for start a project with nodejs/koa",
"main": "src/server.js",
"scripts": {
"clean": "rimraf lib",
"start": "node lib/server.js",
"test": "jest --coverage",
"test:watch": "jest --watch",
"babel-node": "./node_modules/.bin/babel-node src/server.js",
"nodemon": "nodemon --exec npm run babel-node -- src/server.js",
"build": "npm run clean && mkdir -p lib && ./node_modules/.bin/babel src -s -D -d lib",
"lint": "./node_modules/.bin/eslint src/*.js",
"prepush": "npm run lint",
"relay": "relay-compiler --src ./src/ --schema ./data/schema.graphql",
"update-schema": "babel-node ./scripts/updateSchema.js"
},
"keywords": [
"koa",
"babel",
"boilerplate",
"scaffold",
"es6",
"es2015",
"es2016",
"es2017",
"jest",
"eslint"
],
"author": "Rafael Bastiani <rafacdb@gmail.com> (https://rafaelbastiani.com/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Bastiani/graphql_tests.git"
},
"bugs": {
"url": "https://github.com/Bastiani/graphql_tests/issues"
},
"homepage": "https://github.com/Bastiani/graphql_tests#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-jest": "^21.2.0",
"babel-preset-env": "^1.6.1",
"eslint": "^4.12.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jest": "^21.3.2",
"husky": "^0.14.3",
"jest": "^21.2.1",
"jest-cli": "^21.2.1",
"mockingoose": "^2.4.0",
"relay-compiler": "^1.4.1",
"rimraf": "^2.6.2"
},
"dependencies": {
"graphql": "^0.11.7",
"graphql-relay": "^0.5.4",
"koa": "^2.4.1",
"koa-body": "^2.5.0",
"koa-graphql": "^0.7.3",
"koa-router": "^7.3.0",
"mongoose": "^4.13.5",
"node-fetch": "^1.7.3"
}
}