-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.08 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.08 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
{
"name": "census-graphql-api",
"version": "0.1.0",
"description": "GraphQL API for information from the South African 2011 census",
"main": "dist/index.js",
"module": "src/index.js",
"author": "Adrian Frith <adrian@adrianfrith.com>",
"repository": {
"type": "git",
"url": "https://github.com/afrith/census-graphql-api.git"
},
"license": "MIT",
"scripts": {
"build": "babel src -d dist",
"start": "node dist/index.js",
"dev": "babel-watch src/index.js"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"babel-watch": "^7.0.0",
"standard": "^17.0.0"
},
"dependencies": {
"@koa/cors": "^3.1.0",
"@koa/router": "^12.0.0",
"apollo-server-koa": "^3.10.2",
"dataloader": "^2.1.0",
"graphql": "^16.6.0",
"graphql-tag": "^2.10.3",
"graphql-type-json": "^0.3.1",
"koa": "^2.12.0",
"koa-bodyparser": "^4.3.0",
"koa-logger": "^3.2.1",
"lodash": "^4.17.15",
"pg": "^8.8.0",
"winston": "^3.2.1"
},
"engines": {
"node": "^16"
}
}