-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.33 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
{
"name": "callback-handler",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/twin-te/callback-handler.git",
"license": "MIT",
"scripts": {
"dev": "cross-env LOG_LEVEL=trace NODE_ENV=development ts-node --files src/index.ts",
"proto": "./proto-gen.sh",
"build": "rm -rf ./dist && tsc"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/express-session": "^1.17.3",
"@types/node": "^14.14.35",
"@types/passport-apple": "^1.1.0",
"@types/passport-google-oauth": "^1.0.41",
"@types/passport-twitter": "^1.0.36",
"@typescript-eslint/eslint-plugin": "^4.18.0",
"@typescript-eslint/parser": "^4.18.0",
"cross-env": "^7.0.3",
"eslint": "^7.22.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-standard": "^16.0.2",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.3"
},
"dependencies": {
"@grpc/grpc-js": "^1.2.12",
"@grpc/proto-loader": "^0.5.6",
"cookie-parser": "^1.4.5",
"date-fns": "^2.19.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"google-auth-library": "^7.0.4",
"passport": "^0.4.1",
"passport-apple": "^1.1.1",
"passport-google-oauth": "^2.0.0",
"passport-twitter": "^1.0.4",
"protobufjs": "github:iFwu/protobuf.js"
}
}