-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
29 lines (29 loc) · 962 Bytes
/
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
{
"name": "root",
"private": true,
"scripts": {
"bootstrap": "lerna bootstrap",
"build": "tsc -b packages/scaffolder-core packages/scaffolder-cli",
"test": "npm run build && lerna run test --stream",
"version": "lerna version --conventional-commits",
"publish": "lerna publish from-package ---conventional-commits",
"lint": "eslint packages/scaffolder-cli packages/scaffolder-core",
"publish-extension": "lerna run --scope scaffolder-vscode publish"
},
"devDependencies": {
"@babel/core": "^7.12.0",
"@babel/preset-env": "^7.12.0",
"@types/commander": "^2.12.2",
"@types/fs-extra": "^9.0.2",
"@types/inquirer": "^7.3.1",
"@types/jest": "^26.0.14",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"babel-jest": "^26.5.2",
"eslint": "^7.5.0",
"jest": "^26.4.2",
"lerna": "^3.22.1",
"ts-jest": "^26.3.0",
"typescript": "^4.1.0"
}
}