-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
30 lines (30 loc) · 1 KB
/
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
{
"name": "starwars-graphql",
"version": "1.0.0",
"description": "GraphQL server using the Star Wars REST API as backend",
"main": "index.js",
"scripts": {
"start": "node index.js",
"deploy": "now -e APOLLO_API_KEY=@apollo_api_key -e APOLLO_ENGINE_PORT=@apollo_engine_port --team starwars --docker",
"build": "docker build --no-cache -t starwars-graphql .",
"start:docker": "docker run -d -p 3000:80 -e 'NODE_ENV=production' --name starwars-graphql starwars-graphql",
"stop:docker": "docker stop starwars-graphql && docker rm starwars-graphql",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"apollo-datasource-rest": "2.0.0-rc.6",
"apollo-engine": "1.1.2",
"apollo-server": "2.0.0-rc.6",
"apollo-server-express": "2.0.0-rc.6",
"body-parser": "1.18.3",
"express": "4.16.3",
"graphql": "0.13.2",
"graphql-tools": "3.0.2"
},
"devDependencies": {
"dotenv": "6.0.0"
}
}