-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
45 lines (45 loc) · 1.13 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
{
"name": "firebase-auth-service-worker-sessions",
"version": "1.0.0",
"description": "Session Management with Service Workers",
"main": "app.js",
"scripts": {
"bundle": "webpack --config webpack.config.js",
"prestart": "npm run bundle",
"deploy": "gcloud app deploy",
"start": "node server/app.js"
},
"author": "bojeil-google",
"license": "Apache License Version 2.0",
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"firebase": "^6.2.4",
"firebase-admin": "^8.2.0",
"firebaseui": "^4.0.0",
"webpack": "^4.35.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"semistandard": "^13.0.1",
"webpack": "^4.35.3",
"webpack-cli": "^3.0.8"
},
"engines": {
"node": ">=8"
},
"cloud-repo-tools": {
"test": {
"app": {
"msg": "Session management with Firebase Auth Service workers"
}
},
"requiresKeyFile": true,
"requiresProjectId": true
}
}