forked from OfficeDev/teams-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.04 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
{
"name": "teamsfx",
"scripts": {
"setup": "npm install && npm run build",
"setup-failpoint": "npm run setup && npx lerna run build-failpoint",
"setup-metrics": "npm run setup && npx lerna run build-metrics",
"bootstrap": "lerna bootstrap",
"lint:staged": "lerna run lint:staged --stream",
"lint": "lerna run lint --stream",
"manual-version:rc": "lerna version --preid=rc --no-push --no-changelog",
"prepare": "husky install",
"precommit": "lint-staged",
"postinstall": "npm run bootstrap --hoist",
"build": "lerna run build",
"clean": "lerna clean"
},
"devDependencies": {
"@commitlint/cli": "^12.0.1",
"@commitlint/config-conventional": "^12.0.1",
"@types/fs-extra": "^9.0.12",
"@types/node": "^16.7.10",
"@types/semver": "^7.3.8",
"axios": "^0.21.3",
"codecov": "^3.8.3",
"dotenv": "^10.0.0",
"husky": "^6.0.0",
"lerna": "^4.0.0",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
},
"bin": {
"teamsfx": "./packages/cli/cli.js"
},
"dependencies": {}
}