-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 829 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 829 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
35
{
"name": "graph-server",
"version": "1.0.0",
"description": "graph-server",
"main": "build/start.js",
"author": "Santiago Aras",
"license": "MIT",
"private": true,
"scripts": {
"start-dev": "nodemon --config \"./nodemon.json\"/"
},
"devDependencies": {
"@types/express": "^4.17.2",
"@types/node": "^13.1.2",
"nodemon": "^2.0.2",
"ts-node": "^8.5.4",
"tslint": "^5.20.1",
"typescript": "^3.7.4"
},
"dependencies": {
"@overnightjs/core": "^1.6.11",
"@overnightjs/logger": "^1.1.9",
"@types/dotenv": "^8.2.0",
"@types/mongoose": "^5.5.37",
"apollo-server-express": "^2.9.15",
"body-parser": "^1.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-graphql": "^0.9.0",
"graphql": "^14.5.8",
"mongoose": "^5.8.3",
"reflect-metadata": "^0.1.13",
"type-graphql": "^0.17.6"
}
}