-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (46 loc) · 1.19 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
{
"name": "passport-fast-config",
"version": "1.1.1",
"description": "This package adds a easy configuration to Passport Js implementation",
"main": "./",
"type": "commonjs",
"keywords": ["passport","passportjs","login","users"],
"author": "",
"license": "ISC",
"scripts": {
"tsc": "tsc --init",
"build": "tsc --build"
},
"types": "types.d.ts",
"dependencies": {
"axios": "^1.3.4",
"bcrypt": "^5.1.0",
"googleapis": "^113.0.0",
"knex": "^2.4.2",
"mongoose": "^6.8.4",
"mysql": "^2.18.1",
"passport": "^0.6.0",
"passport-google-oauth20": "^2.0.0",
"passport-local": "^1.0.0",
"sqlite3": "^5.1.4",
"uuid": "^9.0.0",
"winston": "^3.8.2"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/mongoose": "^5.11.97",
"@types/passport": "^1.0.11",
"@types/passport-google-oauth20": "^2.0.11",
"@types/passport-local": "^1.0.35",
"@types/uuid": "^9.0.1",
"nodemon": "^2.0.20",
"standard": "^17.0.0",
"ts-node-dev": "^2.0.0",
"ts-standard": "^12.0.2",
"ts-toolbelt": "^9.6.0",
"typescript": "^4.9.4"
},
"eslintConfig": {
"extends": "node_modules/ts-standard/eslintrc.json"
}
}