-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 2.08 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
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "flex-project-template",
"version": "1.0.4",
"description": "This repository provides development teams with a starting point for flex projects or developing flex features.",
"scripts": {
"postinstall": "node scripts/setup-local-environment.js",
"generate-env": "node scripts/setup-local-environment.js false",
"populate-missing-placeholders": "node scripts/populate-missing-placeholders.js",
"show-env": "node scripts/show-env-vars.js",
"add-feature": "node scripts/add-feature.js",
"remove-features": "node scripts/remove-features.js",
"rename-template": "node scripts/rename-template.js",
"start:serverless": "cd serverless-functions && twilio serverless:start --inspect=localhost --port=3001 --env .env",
"start:plugin:v1": "cd plugin-flex-ts-template-v1 && twilio flex:plugins:start --port=3000",
"start:plugin:v2": "cd plugin-flex-ts-template-v2 && twilio flex:plugins:start --port=3000",
"start:plugin": "node scripts/start-local.js",
"start:local:v1": "npm-run-all --parallel start:serverless start:plugin:v1",
"start:local:v2": "npm-run-all --parallel start:serverless start:plugin:v2",
"start:local": "concurrently --kill-others --timings true \"npm:start:serverless\" \"npm:start:plugin\"",
"lint": "eslint ./plugin-flex-ts-template-v2 ./serverless-functions ./serverless-schedule-manager",
"lint:fix": "npm run lint -- --fix",
"lint:report": "npm run lint -- --output-file eslint_report.json --format json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/twilio-professional-services/twilio-proserv-flex-project-template.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/twilio-professional-services/twilio-proserv-flex-project-template/issues"
},
"homepage": "https://github.com/twilio-professional-services/twilio-proserv-flex-project-template#readme",
"devDependencies": {
"concurrently": "^7.5.0",
"eslint": "^8.37.0",
"json5": "^2.2.3",
"npm-run-all": "4.1.5",
"prompt": "^1.3.0",
"shelljs": "^0.8.5",
"twilio-cli": "5.3.1"
}
}