-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.77 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.77 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
{
"name": "flow-ui-kit",
"private": true,
"version": "1.0.0",
"description": "Screen Flow UI Components",
"scripts": {
"lint": "eslint **/{aura,lwc}/**/*.js",
"test": "npm run test:unit",
"test:unit": "jest --config jest.config.js",
"test:unit:watch": "jest --config jest.config.js --watch",
"test:unit:debug": "node --inspect-brk node_modules/.bin/jest --config jest.config.js --runInBand",
"test:unit:coverage": "jest --config jest.config.js --coverage",
"prettier": "prettier --write \"**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,xml,yaml,yml}\"",
"prettier:verify": "prettier --check \"**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,xml,yaml,yml}\"",
"precommit": "lint-staged",
"tsc": "tsc --project ./force-app/main/default/lwc/tsconfig.build.json",
"typecheck": "tsc --project ./force-app/main/default/lwc --noEmit"
},
"devDependencies": {
"@lwc/eslint-plugin-lwc": "^3.1.0",
"@prettier/plugin-xml": "^3.4.1",
"@salesforce/eslint-config-lwc": "^4.0.0",
"@salesforce/eslint-plugin-aura": "^3.0.0",
"@salesforce/eslint-plugin-lightning": "^2.0.0",
"@salesforce/lightning-types": "^0.10.1",
"@salesforce/sfdx-lwc-jest": "^8.0.0",
"@types/jest": "^30.0.0",
"eslint": "^9.29.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.14.0",
"lint-staged": "^16.1.2",
"lwc": "9.3.4",
"prettier": "^3.5.3",
"prettier-plugin-apex": "^2.2.6",
"typescript": "^5.9.3"
},
"lint-staged": {
"**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,xml,yaml,yml}": [
"prettier --write"
],
"**/{aura,lwc}/**/*.js": [
"eslint"
],
"**/lwc/**": [
"jest --config jest.config.js --bail --findRelatedTests --passWithNoTests"
]
}
}