-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.04 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.04 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
39
40
{
"name": "oauth-passport",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"dev": "nodemon --watch './src/**/*.ts' --exec 'ts-node' ./src/index.ts",
"start": "ts-node ./src/index.ts --fast --transpileOnly"
},
"author": "",
"license": "ISC",
"dependencies": {
"cookie-session": "^1.3.3",
"dotenv": "^8.1.0",
"ejs": "^2.6.2",
"express": "^4.17.1",
"mongoose": "^5.6.11",
"morgan": "^1.9.1",
"passport": "^0.4.0",
"passport-google-oauth20": "^2.0.0",
"passport-local": "^1.0.0",
"path": "^0.12.7"
},
"devDependencies": {
"@types/cors": "^2.8.6",
"@types/dotenv": "^6.1.1",
"@types/express": "^4.17.1",
"@types/mongoose": "^5.5.15",
"@types/morgan": "^1.7.37",
"@types/node": "^12.7.3",
"@types/passport": "^1.0.1",
"@types/passport-google-oauth20": "^2.0.2",
"@types/passport-local": "^1.0.33",
"nodemon": "^1.19.1",
"ts-node": "^8.3.0",
"tslint": "^5.19.0",
"tslint-config-airbnb": "^5.11.1",
"typescript": "^3.6.2"
}
}