-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.06 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.06 KB
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
{
"name": "graphql-typescript",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "ts-node-dev --respawn src/index.ts",
"watch:js": "tsc -w",
"serve:js": "nodemon dist/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/express": "^4.17.11",
"@types/graphql": "^14.5.0",
"@types/jsonwebtoken": "^8.5.0",
"@types/mongoose": "5.10.3",
"@types/node": "^14.14.33",
"@types/nodemailer": "^6.4.0",
"ts-node-dev": "^1.1.6",
"typescript": "^4.2.3"
},
"dependencies": {
"@typegoose/typegoose": "7.4.8",
"apollo-server": "^2.21.1",
"bcryptjs": "^2.4.3",
"class-validator": "^0.13.1",
"dotenv": "^8.2.0",
"graphql": "^15.5.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "5.10.18",
"nodemailer": "^6.5.0",
"reflect-metadata": "^0.1.13",
"type-graphql": "^1.1.1"
}
}