-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
46 lines (46 loc) · 1.33 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
{
"name": "graphql-cep",
"description": "Query any CEP using GraphQL",
"version": "1.0.0",
"dependencies": {
"es6-promise": "^3.2.1",
"graphql": "^0.7.0",
"graphql-relay": "^0.4.3",
"isomorphic-fetch": "^2.2.1",
"koa": "^2.0.0",
"koa-bodyparser": "^2.2.0",
"koa-compose": "^3.1.0",
"koa-convert": "^1.2.0",
"koa-cors": "0.0.16",
"koa-graphql": "^0.5.6",
"koa-logger": "^2.0.0"
},
"devDependencies": {
"babel-cli": "^6.11.4",
"babel-eslint": "^6.1.2",
"babel-plugin-transform-flow-strip-types": "^6.14.0",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.9.0",
"eslint": "^3.5.0",
"eslint-config-airbnb": "^10.0.1",
"eslint-plugin-import": "^1.14.0",
"flow-bin": "^0.32.0",
"nodemon": "^1.10.2"
},
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/sibelius/graphql-cep"
},
"scripts": {
"build": "rm -rf dist/* && babel src --ignore *.spec.js --out-dir dist --copy-files",
"eslint": "eslint index.js server/** test/**",
"flow": "flow; test $? -eq 0 -o $? -eq 2",
"start": "node dist/index.js",
"watch": "nodemon src/index.js --exec babel-node",
"update-schema": "babel-node ./scripts/updateSchema.js"
}
}