forked from madebycodera/graphql-test
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 809 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 809 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": "graphql-test",
"version": "1.0.0",
"description": "Graphql test ToDo",
"main": "index.js",
"scripts": {
"start": "nodemon -r dotenv/config lib/app.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Raizerz/graphql-test.git"
},
"author": "Igor Tsarenko",
"license": "ISC",
"bugs": {
"url": "https://github.com/Raizerz/graphql-test/issues"
},
"homepage": "https://github.com/Raizerz/graphql-test#readme",
"dependencies": {
"@koa/cors": "^3.0.0",
"apollo-server-koa": "^2.6.7",
"config": "^3.1.0",
"graphql": "^14.4.2",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"pg": "^7.11.0",
"sequelize": "^5.9.2"
},
"devDependencies": {
"dotenv": "^8.0.0",
"nodemon": "^1.19.1"
}
}