-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
66 lines (66 loc) · 2.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@twilio-labs/serverless-toolkit",
"private": true,
"scripts": {
"bootstrap": "npm run build",
"build": "npm run build --workspaces --if-present",
"changeset": "changeset",
"version-packages": "npm run create-version && npm run version-package --workspaces --if-present",
"create-version": "changeset version",
"npm:publish": "changeset publish",
"cm": "git-cz",
"jest": "jest",
"build:noemit": "npm run build:noemit --workspaces --if-present",
"clean": "npm run clean --workspaces --if-present",
"test": "run-s build:noemit jest",
"contrib:add": "all-contributors add",
"contrib:generate": "all-contributors generate",
"lint-staged": "lint-staged",
"docs": "npm run docs --workspaces --if-present",
"prepare": "husky install",
"pre-commit": "lint-staged",
"reset": "npm exec --workspaces -- npx rimraf node_modules && npx rimraf node_modules"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.0",
"@commitlint/cli": "^19.1.0",
"@commitlint/config-conventional": "^19.1.0",
"@twilio/test-dep": "npm:[email protected]",
"@types/jest": "^29.2.4",
"all-contributors-cli": "^6.1.2",
"commitizen": "^4.2.4",
"commitlint-plugin-workspace-scopes": "^1.1.0",
"conventional-changelog-cli": "^2.1.0",
"cz-conventional-changelog": "^2.1.0",
"husky": "^8.0.2",
"jest": "^29.7.0",
"jest-express": "^1.10.1",
"lint-staged": "^15.2.2",
"listr": "^0.14.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.1.2",
"typedoc": "^0.26.5",
"typescript": "^5.3.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"git add"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"workspaces": [
"./packages/serverless-api",
"./packages/serverless-runtime-types",
"./packages/runtime-handler",
"./packages/twilio-run",
"./packages/*"
]
}