-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 2.12 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "ishiki-backend-admin",
"version": "1.1.0",
"description": "(Extension of an) End to end sample for running Node.js applications on Google Cloud Platform",
"repository": "https://github.com/GoogleCloudPlatform/nodejs-getting-started",
"private": true,
"scripts": {
"start": "node app.js",
"test": "repo-tools test app && ava -t 30s --tap test/*.test.js",
"e2e": "repo-tools test deploy && E2E_TESTS=True ava -t 30s --tap test/*.test.js",
"cover": "nyc --cache npm test; nyc report --reporter=html",
"init-cloudsql": "node books/model-cloudsql.js",
"dev": "nodemon index.js"
},
"author": "Google Inc.",
"contributors": [
{
"name": "Jon Wayne Parrott",
"email": "[email protected]"
},
{
"name": "Jonathan Simon",
"email": "[email protected]"
},
{
"name": "Jason Dobry",
"email": "[email protected]"
},
{
"name": "Ace Nassri",
"email": "[email protected]"
}
],
"cloud-repo-tools": {
"requiresKeyFile": true,
"requiresProjectId": true,
"test": {
"app": {
"args": [
"app.js"
],
"msg": "Bookshelf - Node.js on Google Cloud Platform"
}
}
},
"license": "Apache-2.0",
"semistandard": {
"globals": [
"after",
"afterEach",
"before",
"beforeEach",
"describe",
"it"
]
},
"dependencies": {
"@google-cloud/datastore": "2.0.0",
"@sendgrid/mail": "^6.3.1",
"body-parser": "1.18.3",
"cors": "^2.8.5",
"dotenv": "^6.2.0",
"express": "4.16.4",
"express-jwt": "^5.3.1",
"express-jwt-authz": "^1.0.0",
"express-session": "^1.15.6",
"jwks-rsa": "^1.3.0",
"lodash": "4.17.11",
"mysql": "2.16.0",
"nconf": "0.10.0",
"node-schedule": "^1.3.2",
"passport": "^0.4.0",
"passport-auth0": "^1.1.0",
"prompt": "1.0.0",
"pug": "^2.0.3",
"uglify-js": "3.4.9"
},
"devDependencies": {
"@google-cloud/nodejs-repo-tools": "^2.3.5",
"ava": "0.25.0",
"nodemon": "^1.18.9",
"proxyquire": "2.1.0",
"sinon": "^7.2.2"
},
"engines": {
"node": ">=8"
}
}