-
Notifications
You must be signed in to change notification settings - Fork 82
/
package.json
49 lines (49 loc) · 1.37 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
{
"name": "graphql-pokemon",
"description": "Get information of a Pokémon with GraphQL!",
"version": "1.0.0",
"author": {
"name": "Lucas Bento da Silva",
"email": "[email protected]",
"url": "https://github.com/lucasbento"
},
"bugs": "https://github.com/lucasbento/graphql-pokemon/issues",
"dependencies": {
"graphql": "^0.8.2",
"graphql-relay": "^0.4.3",
"koa": "^2.0.0",
"koa-convert": "^1.2.0",
"koa-cors": "0.0.16",
"koa-graphql": "^0.6.0"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-eslint": "^7.0.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"eslint": "^3.5.0",
"eslint-config-airbnb": "^14.0.0",
"eslint-plugin-import": "^2.0.1",
"nodemon": "^1.9.2"
},
"homepage": "https://github.com/lucasbento/graphql-pokemon#readme",
"keywords": [
"pokemon",
"pogoapi",
"pokeapi",
"koa",
"graphql",
"relay"
],
"license": "MIT",
"main": "dist/index.js",
"repository": "https://github.com/lucasbento/graphql-pokemon",
"scripts": {
"eslint": "eslint src/*",
"build-app": "rm -rf dist/* && babel src --out-dir dist --copy-files",
"build-schema": "babel-node ./scripts/buildSchema.js",
"start": "node dist/index.js",
"watch": "nodemon src/index.js --exec babel-node --copy-files"
}
}