-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
27 lines (27 loc) · 1.09 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
{
"name": "salesforce-automation-framework",
"private": false,
"version": "1.0.0",
"description": "Salesforce Automation Framework",
"scripts": {
"test": "sf apex run test -l RunLocalTests -c -y -v -w 30 -d .sfdx/tools/testresults/apex",
"prettier": "prettier --write \"**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,yaml,yml}\"",
"prettier:verify": "prettier --check \"**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,yaml,yml}\"",
"pmd:check": "pmd check -f html -d src/classes -R .pmdrc.xml -r pmd-result.html --no-fail-on-violation && pnpm run pmd:open",
"pmd:open": "open pmd-result.html",
"update-dependencies": "ncu -u && pnpm install"
},
"devDependencies": {
"@lwc/eslint-plugin-lwc": "^1.9.0",
"@prettier/plugin-xml": "^3.4.1",
"@salesforce/eslint-config-lwc": "^3.6.0",
"@salesforce/eslint-plugin-aura": "^2.1.0",
"@salesforce/eslint-plugin-lightning": "^1.0.0",
"@salesforce/sfdx-lwc-jest": "^7.0.1",
"eslint": "^9.17.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.10.0",
"prettier": "^3.4.2",
"prettier-plugin-apex": "^2.2.2"
}
}