-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.66 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.66 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "apex-kit",
"private": true,
"version": "1.0.0",
"description": "Delightful set of custom APIs for rapid, repeatable, maintainable Salesforce development",
"scripts": {
"docs:setup": ". doc-assets/SetupApexDox.sh",
"docs:clean": "prettier --write \"docs/*.html\"",
"apexdocs": "sh bin/generate-apex-docs.sh",
"apex:local:start": "start-apex-server --host 127.0.0.1",
"apex:local:stop": "stop-apex-server --host 127.0.0.1",
"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}\"",
"precommit": "npm run apexdocs && git add docs && lint-staged"
},
"devDependencies": {
"@cparra/apexdocs": "^3.20.1",
"@lwc/eslint-plugin-lwc": "^3.4.0",
"@prettier/plugin-xml": "^3.4.2",
"@sa11y/jest": "^7.4.0",
"@salesforce/eslint-config-lwc": "^4.1.2",
"@salesforce/eslint-plugin-lightning": "^2.0.0",
"@salesforce/sfdx-lwc-jest": "^7.8.0",
"eslint": "^9.39.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^28.14.0",
"husky": "^9.1.7",
"lint-staged": "^16.3.2",
"prettier": "^3.8.1",
"prettier-plugin-apex": "^2.2.6"
},
"lint-staged": {
"**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,xml,yaml,yml}": [
"prettier --write"
],
"**/{aura,lwc}/**": [
"eslint"
]
},
"volta": {
"node": "20.15.0"
}
}