-
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 952 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 952 Bytes
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
{
"name": "server-koa",
"private": true,
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "if [ -x ../.env ]; then . ../.env; fi; NODE_ENV=development nodemon server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Benjie Gillam <code@benjiegillam.com>",
"license": "MIT",
"dependencies": {
"@graphile-contrib/pg-simplify-inflector": "^4.0.0-alpha.0",
"@koa/cors": "2.2.1",
"graphile-utils": "^4.4.0-beta.1",
"http-proxy": "1.18.1",
"koa": "2.15.4",
"koa-bodyparser": "4.2.1",
"koa-bunyan-logger": "2.1.0",
"koa-compress": "3.0.0",
"koa-helmet": "4.0.0",
"koa-jwt": "4.0.4",
"koa-passport": "5.0.0",
"koa-route": "3.2.0",
"koa-session": "5.8.1",
"koa-static": "5.0.0",
"passport-github": "1.1.0",
"pg": "7.4.3",
"postgraphile": "^4.4.1-rc.0"
},
"devDependencies": {
"nodemon": "1.17.5"
}
}