-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 915 Bytes
/
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
{
"name": "functions",
"scripts": {
"build": "tsc",
"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"
},
"main": "lib/index.js",
"engines": {
"node": "8"
},
"dependencies": {
"@ffmpeg-installer/ffmpeg": "^1.0.17",
"@google-cloud/storage": "^2.3.4",
"@sendgrid/mail": "^6.3.1",
"@types/fluent-ffmpeg": "^2.1.9",
"@types/fs-extra": "^5.0.4",
"axios": "^0.18.0",
"caman": "^4.1.2",
"ffmpeg-on-progress": "^1.0.0",
"firebase-admin": "~6.0.0",
"firebase-functions": "^2.2.0",
"fluent-ffmpeg": "^2.1.2",
"fs-extra": "^7.0.1",
"stripe": "^6.25.1",
"to-streamable": "^2.0.0"
},
"devDependencies": {
"typescript": "^3.2.2"
},
"private": true
}