-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·72 lines (72 loc) · 1.92 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
{
"name": "nodejs-gcp",
"version": "1.0.1",
"description": "Node.js and GCP in action",
"main": "",
"scripts": {
"test": "jest --detectOpenHandles"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mrdulin/nodejs-gcp.git"
},
"keywords": [
"Node.js",
"GCP",
"Google Cloud Platform"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mrdulin/nodejs-gcp/issues"
},
"homepage": "https://github.com/mrdulin/nodejs-gcp#readme",
"dependencies": {
"@google-cloud/compute": "^0.12.0",
"@google-cloud/datastore": "^1.4.2",
"@google-cloud/error-reporting": "^2.0.0",
"@google-cloud/kms": "^1.0.0",
"@google-cloud/pubsub": "^2.3.0",
"@google-cloud/redis": "^1.6.0",
"@google-cloud/secret-manager": "^3.1.0",
"@google-cloud/storage": "^3.0.2",
"async": "^2.6.2",
"bluebird": "^3.7.2",
"cors": "^2.8.5",
"dl-toolkits": "^1.0.11",
"express": "^4.17.1",
"faker": "^4.1.0",
"google-auth-library": "^4.0.0",
"googleapis": "^42.0.0",
"knex": "^0.21.1",
"lodash": "^4.17.19",
"lowdb": "^1.0.0",
"node-fetch": "^2.6.0",
"pg": "^7.8.0",
"request": "^2.88.2",
"request-promise": "^4.2.5",
"semaphore": "^1.1.0"
},
"devDependencies": {
"@types/dotenv": "^6.1.0",
"@types/express": "^4.17.6",
"@types/faker": "^4.1.11",
"@types/google-cloud__datastore": "^1.3.3",
"@types/google-cloud__kms": "^0.2.0",
"@types/google-cloud__pubsub": "^0.26.1",
"@types/jest": "^23.3.5",
"@types/knex": "^0.16.1",
"@types/lodash": "^4.14.150",
"@types/lowdb": "^1.0.9",
"@types/pg": "^7.14.3",
"@types/request": "^2.48.4",
"@types/request-promise": "^4.1.46",
"awesome-typescript-loader": "^5.2.1",
"dotenv": "^6.2.0",
"jest": "^23.6.0",
"ts-jest": "^23.10.4",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"typescript": "^3.8.3"
}
}