forked from twilio/twilio-webchat-react-app
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
31 lines (31 loc) · 1.03 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
{
"name": "twilio-webchat-widget-serverless",
"version": "0.0.0",
"private": true,
"scripts": {
"test": "tsc --noEmit",
"start": "twilio-run --functions-folder dist/functions --assets-folder dist/assets --port 3003",
"deploy": "twilio-run deploy --functions-folder dist/functions --assets-folder dist/assets",
"build": "tsc && npm run build:copy-assets",
"build:copy-assets": "copyfiles src/assets/*.* src/assets/**/*.* --up 2 --exclude **/*.ts dist/assets/",
"prestart": "npm run build",
"predeploy": "npm run build"
},
"dependencies": {
"@sendgrid/mail": "^7.7.0",
"@twilio-labs/serverless-runtime-types": "^1.1",
"@twilio/runtime-handler": "1.3.0",
"axios": "^1.2.5",
"jsonwebtoken": "^9.0.0",
"twilio": "^3.56"
},
"devDependencies": {
"@types/jsonwebtoken": "^9.0.1",
"copyfiles": "^2.2.0",
"twilio-run": "^3.5.2",
"typescript": "^4"
},
"engines": {
"node": "16"
}
}