forked from lukethacoder/sfdx-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.7 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "sfdx-starter",
"private": true,
"version": "1.0.0",
"description": "sfdx-starter",
"type": "module",
"pnpm": {
"overrides": {
"@lwc/module-resolver": "$@lukethacoder/lwc-module-resolver"
}
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepare": "husky install",
"dev": "npx @lwc-garden/core dev",
"scratch:create": "sf org create scratch -v ALIAS_OF_YOUR_DEBHUB -f config/project-scratch-def.json -a ALIAS_FOR_SCRATCH_ORG -y 30 -w 10",
"test": "jest --no-cache",
"test:watch": "jest --watch",
"test:debug": "jest --debug",
"lint": "npm run lint:lwc",
"lint:lwc": "eslint force-app/main/default/lwc"
},
"devDependencies": {
"@lukethacoder/lwc-module-resolver": "^6.0.0",
"@lukethacoder/lwc-webpack-plugin": "^4.2.0",
"@lwc-garden/core": "^1.0.0",
"@lwc/compiler": "^6.3.4",
"@lwc/engine-dom": "^6.3.4",
"@lwc/engine-server": "^6.3.4",
"@lwc/jest-preset": "^16.0.0",
"@lwc/jest-shared": "^16.0.0",
"@lwc/jest-transformer": "^16.0.0",
"@lwc/synthetic-shadow": "^6.3.4",
"@prettier/plugin-xml": "3.4.1",
"@salesforce/eslint-config-lwc": "^3.5.3",
"@salesforce/sfdx-lwc-jest": "^5.0.0",
"@salesforce/wire-service-jest-util": "^4.1.4",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"eslint": "^9.0.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.2",
"lwc": "^6.3.4",
"lwr": "^0.12.0",
"prettier": "^3.2.5",
"prettier-plugin-apex": "^2.1.0"
},
"lint-staged": {
"**/*.{css,html,js,json,md,yaml,yml}": [
"prettier --write"
],
"**/lwc/**/*.js": [
"eslint --cache --fix"
]
}
}