-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
26 lines (26 loc) · 854 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
{
"name": "chatterbox2",
"version": "0.0.0",
"scripts": {
"build": "tsc && npm run build:copy-assets",
"build:copy-assets": "copyfiles src/assets/* src/assets/**/* --up 2 --exclude **/*.ts dist/assets/",
"test": "tsc --noEmit",
"prestart": "npm run build",
"start": "twilio-run --functions-folder dist/functions --assets-folder dist/assets",
"predeploy": "npm run build",
"deploy": "twilio-run deploy --functions-folder dist/functions --assets-folder dist/assets --runtime node18 --override-existing-project",
"promote": "twilio-run promote --to= --from=dev"
},
"dependencies": {
"@twilio-labs/serverless-runtime-types": "^2.2.3"
},
"devDependencies": {
"copyfiles": "^2.4.1",
"prettier": "2.8.8",
"twilio-run": "^3.5.3",
"typescript": "^5.0.4"
},
"engines": {
"node": "18"
}
}