-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 796 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 796 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
{
"name": "swapi",
"version": "0.1.0",
"description": "Meldio demo backend for The Star Wars API.",
"repository": {
"type": "git",
"url": "https://github.com/meldio/swapi.git"
},
"license": "MIT",
"config": {
"meldio": {
"dbConnectionUri": "mongodb://localhost:27017/swapi",
"protocol": "http",
"host": "localhost",
"port": "9090",
"enabledAuth": [],
"scopes": {},
"root": "",
"schema": "schema.sdl",
"permissions": "permissions.js",
"mutations": "mutations",
"hooks": "hooks",
"build": ".build"
}
},
"dependencies": {
"babel": "^5.8.35",
"mongodb": "^2.1.7",
"swapi-node": "^0.4.0"
},
"scripts": {
"postinstall": "npm link meldio && babel-node ./resources/etl.js"
}
}