-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 943 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
{
"name": "functions",
"scripts": {
"build": "tsc",
"dev": "ts-node-dev ./functions/src/server/server.ts --ignore node_modules",
"serve": "npm run build && firebase emulators:start --only functions",
"shell": "npm run build && firebase functions:shell",
"start": "npm run shell",
"deploy": "firebase deploy --only functions",
"logs": "firebase functions:log"
},
"engines": {
"node": "16"
},
"main": "./functions/lib/index.js",
"dependencies": {
"dotenv": "^16.0.1",
"express": "^4.17.3",
"firebase": "^9.6.10",
"firebase-admin": "^10.0.2",
"firebase-functions": "^3.18.0",
"twilio": "^3.76.1"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.13",
"@types/firebase": "^3.2.1",
"@types/twilio": "^3.19.3",
"firebase-functions-test": "^0.2.0",
"ts-node-dev": "^2.0.0",
"typescript": "^4.6.3"
},
"private": true
}