-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 882 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 882 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
{
"name": "graphql-tutorial",
"version": "1.0.0",
"description": "A GraphQL tutorial project built in Node.js. Built as a project from a course, [GraphQL Crash Course](https://youtube.com/playlist?list=PL4cUxeGkcC9gUxtblNUahcsg0WLxmrK_y&si=ejU9djFB0fvYKJZB) by NetNinja.",
"main": "index.js",
"scripts": {
"compile": "tsc",
"start": "npm run compile && node ./dist/src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Fast-Dog-Coding/graphql-tutorial.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"@apollo/server": "^4.10.4",
"graphql": "^16.8.1",
"mongoose": "^8.4.0"
},
"devDependencies": {
"@types/mongoose": "^5.11.97",
"@types/node": "^20.12.12",
"@types/uuid": "^9.0.8",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}