-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.47 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.47 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
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
{
"name": "functions",
"scripts": {
"build": "rm -rf lib 2>/dev/null && tsc",
"build:watch": "tsc -w",
"serve": "npm run build && firebase serve --only functions",
"shell": "npm run build && firebase functions:shell",
"start": "npm run shell",
"deploy": "firebase deploy --only functions",
"logs": "firebase functions:log",
"emulate": "export GOOGLE_APPLICATION_CREDENTIALS=\"worldbrain-staging-firebase-adminsdk-y7kdm-cea7236e59.json\" npm run build && firebase emulators:start --project worldbrain-staging",
"test": "mocha -r ts-node/register tests/**/*.ts"
},
"engines": {
"node": "14"
},
"main": "lib/src/entry.js",
"dependencies": {
"@grpc/grpc-js": "^1.4.6",
"@josephg/resolvable": "^1.0.0",
"@sentry/node": "^6.15.0",
"@sentry/serverless": "^7.17.3",
"airtable": "^0.10.0",
"axios": "^0.21.2",
"bcrypt": "^3.0.6",
"chargebee": "^2.5.5",
"dexie": "^3.0.2",
"dexie-mongoify": "^1.3.0",
"event-emitter": "^0.3.5",
"eventemitter2": "^6.4.3",
"events": "^3.2.0",
"firebase": "^9.9.2",
"firebase-admin": "10.3.0",
"firebase-functions": "^4.0.2",
"getstream": "^6.2.1",
"immutability-helper": "^3.1.1",
"json-date-parser": "^1.0.1",
"linkedom": "^0.14.21",
"lodash": "^4.17.20",
"module-alias": "^2.2.2",
"node-fetch": "^2.6.0",
"object-path": "^0.11.5",
"openpgp": "^4.10.8",
"pluralize": "^8.0.0",
"querystring": "^0.2.0",
"randombytes": "^2.1.0",
"react": "^17.0.2",
"react-markdown": "^5.0.2",
"serialize-error": "^8.1.0",
"source-map-support": "^0.5.19",
"styled-components": "^5.2.1",
"tweetnacl-async": "^2.0.0",
"tweetnacl-util": "^0.15.1",
"twilio": "^3.42.0",
"typed-emitter": "^1.3.1",
"ui-logic-core": "^0.2.1",
"whatwg-url": "^8.6.0"
},
"devDependencies": {
"@firebase/app-types": "^0.6.0",
"@types/bcrypt": "^3.0.0",
"@types/chai": "^4.2.4",
"@types/mocha": "^5.2.7",
"chai": "^4.2.0",
"firebase-functions-test": "^0.1.7",
"firebase-tools": "^11.16.0",
"mocha": "^6.2.2",
"sinon": "^7.5.0",
"sinon-chai": "^3.3.0",
"ts-node": "^8.4.1",
"typescript": "^4.8.4"
},
"private": true
}