mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-16 01:44:03 +03:00
24 lines
552 B
JSON
24 lines
552 B
JSON
{
|
|
"name": "api-server",
|
|
"version": "1.0.0",
|
|
"description": "api server for event triggers and remote schemas",
|
|
"main": "index.js",
|
|
"author": "shahidhk",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"start": "nodemon -r esm index.js",
|
|
"start-prod": "node -r esm index.js"
|
|
},
|
|
"devDependencies": {
|
|
"nodemon": "^1.18.10"
|
|
},
|
|
"dependencies": {
|
|
"esm": "^3.2.6",
|
|
"express": "^4.16.4",
|
|
"express-graphql": "^0.7.1",
|
|
"graphql": "^14.1.1",
|
|
"morgan": "^1.9.1"
|
|
}
|
|
}
|