-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.16 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.16 KB
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
{
"name": "functions",
"description": "Cloud Functions for Firebase",
"engines": {
"node": "10"
},
"scripts": {
"test": "mocha test/*.js test/**/*.js",
"autotest": "mocha --watch test/*.js test/**/*.js",
"dev": "node devServer.js",
"build": "next build",
"start": "next start",
"seed": "node seed.js"
},
"dependencies": {
"@google-cloud/datastore": "^5.0.0",
"@google-cloud/pubsub": "^1.5.0",
"@google-cloud/storage": "^4.3.1",
"babel-runtime": "^6.26.0",
"bson-objectid": "^1.3.0",
"express": "^4.17.1",
"firebase-admin": "^8.9.2",
"firebase-functions": "^3.3.0",
"fs-extra": "^8.1.0",
"gm": "^1.23.0",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.17.21",
"next": "7.0.2",
"prop-types": "^15.6.2",
"react": "^16.6.0",
"react-dom": "^16.6.0",
"react-virtualized": "^9.21.0",
"request": "^2.88.0",
"request-promise": "^4.2.1",
"twitter": "^1.7.1"
},
"private": true,
"devDependencies": {
"expect": "^1.20.2",
"google-datastore-emulator": "^3.0.0",
"mocha": "^3.5.0",
"nock": "^9.0.13",
"sinon": "^3.2.1",
"supertest": "^3.0.0"
}
}