forked from yoichiro/oauth2-firebase
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
58 lines (58 loc) · 1.7 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
54
55
56
57
58
{
"name": "oauth2-firebase-auth",
"version": "0.3.0",
"description": "This library provides OAuth2 server implementation for Firebase",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev": "tsc -w",
"lint": "tslint -p .",
"format": "yarn internal:prettier --write",
"internal:prettier": "prettier \"./*.{js,json,md,ts,ejs}\" \"./src/**/*.{js,json,md,ts,ejs}\"",
"clean": "rm -rf dist",
"clean:pack": "rm -f *.tgz",
"build": "tsc",
"build:watch": "tsc -w",
"build:clean": "yarn clean:pack && yarn clean && yarn build",
"package": "yarn build:clean && yarn pack",
"release": "yarn build:clean && yarn publish",
"prebuild": "npm run clean",
"prepublishOnly": "npm run build"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/chrisvxd/oauth2-firebase-auth.git"
},
"author": "Chris Villa <[email protected]> (https://github.com/chrisvxd)",
"license": "Apache-2.0",
"homepage": "https://github.com/chrisvxd/oauth2-firebase-auth.git",
"dependencies": {
"@types/cors": "^2.8.7",
"@types/qs": "^6.9.5",
"cors": "^2.8.5",
"ejs": "^2.6.1",
"express": "^4.17.1",
"oauth2-nodejs": "^0.2.0",
"qs": "^6.9.4",
"secure-random-string": "^1.1.0"
},
"devDependencies": {
"@firebase/app-types": "^0.6.1",
"@types/ejs": "^2.6.0",
"@types/express": "^4.17.8",
"@types/node": "^14.10.3",
"firebase-admin": "^9.11.0",
"firebase-functions": "^3.11.0",
"prettier": "^2.1.1",
"tsc": "^2.0.3",
"tslint": "^5.8.0",
"typescript": "^4.0.2"
},
"peerDependencies": {
"firebase-admin": "^9.0.0",
"firebase-functions": "^3.0.0"
}
}