package.json
{
"name": "serverlessly",
"private": true,
"license": "MIT",
"scripts": {
"repair": "yarn --check-files",
"list-packages": "yarn workspaces info && lerna ls",
"ls": "yarn list-packages",
"scaffold": "ts-node tools/scaffold",
"test": "jest",
"lint": "eslint .",
"format-check": "prettier --check .",
"format": "prettier --write .",
"fix-husky": "ts-node ./scripts/fix-husky.ts",
"install-ci": "yarn install --frozen-lockfile",
"test-ci": "jest --collectCoverage=false --ci --passWithNoTests",
"coverage-ci": "jest --coverageThreshold={} --ci --passWithNoTests",
"pre-commit": "lint-staged -q -c ./configs/lint-staged.config.js",
"postinstall": "is-ci || (husky install && yarn fix-husky)",
"build": "tsc -p ./tsconfig.build.json",
"clean-build": "del '@serverlessly/**/*.js' '@serverlessly/**/*.d.ts' '!**/node_modules'"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@commitlint/config-lerna-scopes": "^12.1.4",
"@commitlint/load": "^12.0.1",
"@types/inquirer": "^7.3.1",
"@types/jest": "^26.0.23",
"@types/js-yaml": "^4.0.1",
"@types/node": "^15.6.0",
"@types/shelljs": "^0.8.8",
"@typescript-eslint/eslint-plugin": "^4.24.0",
"@typescript-eslint/parser": "^4.24.0",
"del-cli": "^3.0.1",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-tsdoc": "^0.2.14",
"husky": "^6.0.0",
"inquirer": "^8.1.0",
"is-ci": "^3.0.0",
"jest": "^26.6.3",
"js-yaml": "^4.1.0",
"lerna": "^4.0.0",
"lint-staged": "^11.0.0",
"micromatch": "^4.0.4",
"prettier": "2.3.0",
"shelljs": "^0.8.4",
"ts-jest": "^26.5.6",
"ts-node": "^9.1.1",
"typescript": "^4.2.4",
"yarn": "^1.22.10"
},
"prettier": {
"singleQuote": true,
"endOfLine": "lf"
},
"workspaces": {
"packages": [
"packages/*",
"@serverlessly/*"
]
}
}