-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
53 lines (53 loc) · 1.6 KB
/
package.json
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "typescript-auth-jwt-backend",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"dev": "rimraf dist && tsc -w",
"watch-node": "nodemon dist/index.js",
"watch-ts": "tsc -w",
"postinstall": "tsc",
"deploy": "git add . && git commit -m Heroku && git push heroku master"
},
"keywords": [],
"author": "",
"license": "ISC",
"engines": {
"node": "14.x"
},
"dependencies": {
"@sendgrid/mail": "^7.1.0",
"@typegoose/typegoose": "^7.2.0",
"apollo-server-express": "^2.12.0",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"graphql": "^14.6.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.11",
"passport": "^0.4.1",
"passport-facebook": "^3.0.0",
"passport-google-oauth20": "^2.0.0",
"reflect-metadata": "^0.1.13",
"type-graphql": "^0.17.6"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cookie-parser": "^1.4.2",
"@types/express": "^4.17.6",
"@types/graphql": "^14.5.0",
"@types/jsonwebtoken": "^8.3.9",
"@types/mongoose": "^5.7.27",
"@types/node": "^13.13.4",
"@types/passport": "^1.0.3",
"@types/passport-facebook": "^2.1.9",
"@types/passport-google-oauth20": "^2.0.3",
"nodemon": "^2.0.7",
"rimraf": "^3.0.2",
"ts-node-dev": "^1.0.0-pre.44",
"typescript": "^3.8.3"
}
}