generated from twilio-professional-services/flex-project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.72 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
{
"name": "flex-project-template",
"version": "1.1.0",
"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": "cd plugin-flex-ts-template-v2 && twilio flex:plugins:start --port=3000",
"start": "npm-run-all --parallel start:serverless start:plugin",
"start:docs": "cd docs && npm run start",
"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/flex-project-template.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/twilio-professional-services/flex-project-template/issues"
},
"homepage": "https://github.com/twilio-professional-services/flex-project-template#readme",
"devDependencies": {
"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.5.0"
}
}