-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 834 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 834 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
{
"name": "typegraphql-tutorial",
"version": "1.0.0",
"main": "index.js",
"author": "Tom Nagle",
"license": "MIT",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only src/index.ts"
},
"dependencies": {
"@typegoose/typegoose": "^9.2.0",
"apollo-server": "^3.5.0",
"bcrypt": "^5.0.1",
"class-validator": "^0.13.2",
"config": "^3.3.6",
"cookie-parser": "^1.4.6",
"dotenv": "^10.0.0",
"graphql": "15.x",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.0.13",
"nanoid": "^3.1.30",
"reflect-metadata": "^0.1.13",
"type-graphql": "^1.1.1"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/config": "^0.0.40",
"@types/cookie-parser": "^1.4.2",
"@types/jsonwebtoken": "^8.5.6",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.2"
}
}