-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.18 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "simple_graphql_postgres_api",
"version": "1.0.0",
"description": "A simple GraphQL API built with Node.js and the Express.js framework. For the database PostgreSQL is used, with the pg-promise library.",
"main": "server.js",
"scripts": {
"start": "nodemon server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/georgekrax/simple-graphql-postgres-api.git"
},
"keywords": [
"graphql",
"api",
"express",
"express-graphql",
"pg",
"postgresql"
],
"author": "George Krachtopoulos",
"license": "ISC",
"bugs": {
"url": "https://github.com/georgekrax/simple-graphql-postgres-api/issues"
},
"homepage": "https://github.com/georgekrax/simple-graphql-postgres-api#readme",
"dependencies": {
"apollo-server-express": "^2.19.0",
"babel": "^6.23.0",
"body-parser": "^1.19.0",
"dataloader": "^2.0.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-graphql": "^0.12.0",
"graphql": "^15.4.0",
"graphql-iso-date": "^3.6.1",
"pg": "^8.5.1",
"pg-hstore": "^2.3.3",
"pg-promise": "^10.8.0",
"sequelize": "^6.3.5"
},
"devDependencies": {
"nodemon": "^2.0.6"
}
}