-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 968 Bytes
/
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
{
"name": "graphql-proxy",
"version": "0.0.0",
"description": "simple graphql caching proxy backed by redis",
"main": "index.js",
"author": "Blazing Edge",
"license": "MIT",
"dependencies": {
"dotenv-safe": "^5.0.1",
"got": "^8.3.0",
"graphql": "^0.13.2",
"hasha": "^3.0.0",
"ioredis": "^3.2.2",
"kcors": "^2.2.1",
"koa": "^2.5.0",
"koa-bodyparser": "^4.2.0",
"koa-error": "^3.2.0",
"lodash": "^4.17.9"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"nodemon": "^1.17.3"
},
"engines": {
"node": "8",
"npm": "5"
},
"scripts": {
"lint:check": "eslint .",
"lint:fix": "eslint --fix .",
"dev": "nodemon -q -I -e js,json -i package.json -- index.js",
"start": "node index.js"
}
}