-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.09 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
{
"name": "node_oauth2",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev-start": "ts-node-dev src/index.ts",
"knex": "knex --knexfile=./src/db/knexfile.ts",
"format": "prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/shekbruce/node_oauth2.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/shekbruce/node_oauth2/issues"
},
"homepage": "https://github.com/shekbruce/node_oauth2#readme",
"dependencies": {
"@types/passport-google-oauth20": "^2.0.11",
"body-parser": "^1.20.2",
"dotenv": "^16.0.3",
"ejs": "^3.1.9",
"express": "^4.18.2",
"express-session": "^1.17.3",
"knex": "^2.4.2",
"passport": "^0.6.0",
"passport-google-oauth20": "^2.0.0",
"pg": "^8.10.0"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/express-session": "^1.17.7",
"@types/node": "^18.15.11",
"@types/passport": "^1.0.12",
"prettier": "^2.8.7",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.3"
}
}