-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.18 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
{
"name": "planning-backend",
"version": "1.0.0",
"description": "Node Express Backend API for planning",
"main": "dist/index.js",
"repository": "https://github.com/brianignacio5/planning-backend",
"author": "Brian Ignacio",
"license": "MIT",
"private": false,
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.7",
"@types/express-session": "^1.17.0",
"@types/jsonwebtoken": "^8.5.0",
"@types/mongoose": "^5.7.32",
"@types/node": "^14.0.23",
"@types/passport": "^1.0.4",
"@types/passport-github": "^1.1.5",
"@types/passport-google-oauth20": "^2.0.3",
"@types/passport-linkedin-oauth2": "^1.5.1",
"ts-node": "^8.10.2",
"typescript": "^3.9.6"
},
"scripts": {
"dev": "ts-node src/index.ts",
"start": "ts-node dist/index.js",
"build": "tsc -p ."
},
"dependencies": {
"bcrypt": "^5.0.0",
"cors": "^2.8.5",
"express": "^4.17.1",
"express-session": "^1.17.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.9.24",
"passport": "^0.4.1",
"passport-github": "^1.1.0",
"passport-google-oauth20": "^2.0.0",
"passport-linkedin-oauth2": "^2.0.0"
}
}