-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 885 Bytes
/
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
31
32
33
34
{
"name": "GraphQL-Pokedex",
"version": "1.0.0",
"description": "A pokedex-esque GraphQL app which allows you to query a MongoDB database of pokemon.",
"main": "app.js",
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.17.1",
"express-graphql": "^0.11.0",
"graphql": "^15.4.0",
"mongodb": "^3.6.2",
"q": "^1.5.1"
},
"devDependencies": {
"nodemon": "^3.1.9"
},
"scripts": {
"start": "node app.js",
"serve": "nodemon start",
"start-containerized-environment": "docker-compose up -d"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Solenoden/GraphQL-Pokedex.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Solenoden/GraphQL-Pokedex/issues"
},
"homepage": "https://github.com/Solenoden/GraphQL-Pokedex#readme"
}