-
Notifications
You must be signed in to change notification settings - Fork 71
/
package.json
44 lines (44 loc) · 1.92 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
44
{
"name": "flex-project-template",
"version": "1.1.1",
"description": "This repository provides development teams with a starting point for flex projects or developing flex features.",
"scripts": {
"postinstall": "node scripts/setup-environment.mjs",
"generate-env": "node scripts/setup-environment.mjs --skip-install",
"deploy-addons": "node scripts/deploy-addons.mjs",
"add-feature": "node scripts/add-feature.mjs",
"remove-features": "node scripts/remove-features.mjs",
"rename-template": "node scripts/rename-template.mjs",
"validate-environment": "node scripts/validate-environment.mjs",
"install-serverless-plugin": "twilio plugins:install @twilio-labs/plugin-serverless@v3",
"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:insights start:plugin",
"start:docs": "cd docs && npm run start",
"start:insights": "npx -y @twilio/flex-ui-dev-proxy",
"lint": "eslint ./plugin-flex-ts-template-v2 ./serverless-functions ./addons",
"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": {
"axios": "^1.7.5",
"eslint": "^8.37.0",
"json5": "^2.2.3",
"lodash": "^4.17.21",
"npm-run-all2": "^6.0.6",
"prompt": "^1.3.0",
"semver": "^7.6.2",
"shelljs": "^0.8.5",
"twilio-cli": "5.22.3"
}
}