2022-11-14 18:11:53 +03:00
|
|
|
{
|
2022-11-16 00:31:18 +03:00
|
|
|
"name": "octoforce",
|
2022-11-14 18:11:53 +03:00
|
|
|
"private": true,
|
|
|
|
"version": "1.0.0",
|
2022-11-16 00:31:18 +03:00
|
|
|
"description": "A lightweight open-source Salesforce CI/CD framework built on the GitHub platform.",
|
2022-11-14 18:11:53 +03:00
|
|
|
"scripts": {
|
|
|
|
"lint": "eslint **/{aura,lwc}/**",
|
|
|
|
"test": "npm run test:unit",
|
|
|
|
"test:unit": "sfdx-lwc-jest",
|
|
|
|
"test:unit:watch": "sfdx-lwc-jest --watch",
|
|
|
|
"test:unit:debug": "sfdx-lwc-jest --debug",
|
|
|
|
"test:unit:coverage": "sfdx-lwc-jest --coverage",
|
|
|
|
"prettier": "prettier --write \"**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,xml,yaml,yml}\"",
|
|
|
|
"prettier:verify": "prettier --list-different \"**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,xml,yaml,yml}\"",
|
|
|
|
"postinstall": "husky install",
|
|
|
|
"precommit": "lint-staged"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-11-16 00:31:18 +03:00
|
|
|
"@actions/core": "^1.10.0",
|
2022-11-14 18:11:53 +03:00
|
|
|
"@lwc/eslint-plugin-lwc": "^1.1.2",
|
|
|
|
"@prettier/plugin-xml": "^2.0.1",
|
2022-11-14 18:24:00 +03:00
|
|
|
"@salesforce/cli": "^1.53.0",
|
2022-11-14 18:11:53 +03:00
|
|
|
"@salesforce/eslint-config-lwc": "^3.2.3",
|
|
|
|
"@salesforce/eslint-plugin-aura": "^2.0.0",
|
|
|
|
"@salesforce/eslint-plugin-lightning": "^1.0.0",
|
|
|
|
"@salesforce/sfdx-lwc-jest": "^1.1.0",
|
|
|
|
"eslint": "^8.11.0",
|
|
|
|
"eslint-plugin-import": "^2.25.4",
|
|
|
|
"eslint-plugin-jest": "^26.1.2",
|
|
|
|
"husky": "^7.0.4",
|
|
|
|
"lint-staged": "^12.3.7",
|
|
|
|
"prettier": "^2.6.0",
|
2022-11-14 18:24:00 +03:00
|
|
|
"prettier-plugin-apex": "^1.10.0",
|
|
|
|
"sfdx-cli": "^7.176.1"
|
2022-11-14 18:11:53 +03:00
|
|
|
},
|
|
|
|
"lint-staged": {
|
|
|
|
"**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,xml,yaml,yml}": [
|
|
|
|
"prettier --write"
|
|
|
|
],
|
|
|
|
"**/{aura,lwc}/**": [
|
|
|
|
"eslint"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|