-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.44 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
{
"name": "GraphQLKoaServer",
"version": "1.0.0",
"description": "An example of a simple GraphQL API using Koa",
"main": "server.js",
"repository": "https://github.com/victorhmp/graphql-koa-example-server.git",
"author": "Victor Hugo M. Pinto <[email protected]>",
"license": "MIT",
"dependencies": {
"apollo-server-koa": "^1.3.6",
"graphql": "^0.13.2",
"graphql-import": "^0.6.0",
"graphql-playground-middleware-koa": "^1.6.3",
"graphql-tools": "^3.0.5",
"koa": "^2.5.1",
"koa-bodyparser": "^4.2.1",
"koa-router": "^7.4.0",
"mongoose": "^5.2.2",
"node-fetch": "^2.1.2",
"prisma-binding": "^2.1.0"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.6",
"babel-preset-env": "^1.7.0",
"eslint": "^5.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.2",
"jest": "^23.4.1",
"jest-cli": "^23.4.1",
"nodemon": "^1.17.5",
"prettier": "^1.13.7"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"./dist"
],
"coverageReporters": [
"lcov",
"html"
],
"moduleNameMapper": {
"^mongoose$": "/usr/src/server/node_modules/mongoose"
}
},
"babel": {
"presets": [
"env"
]
},
"scripts": {
"dev": "nodemon ./server.js --exec babel-node",
"lint": "eslint --ext .js --ignore-path .gitignore .",
"test": "jest"
}
}