-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.3 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.3 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "sfdx-starter",
"private": true,
"version": "1.0.0",
"description": "sfdx-starter",
"type": "module",
"pnpm": {
"overrides": {
"@lwc/module-resolver": "$@lukethacoder/lwc-module-resolver"
},
"onlyBuiltDependencies": [
"@lukethacoder/lwc-module-resolver",
"aws-sdk",
"core-js",
"core-js-pure",
"esbuild",
"protobufjs"
]
},
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepare": "husky install",
"dev": "npx lwr dev -p 3333",
"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/utils": "1.2.2",
"@lwc/compiler": "^8.20.1",
"@lwc/engine-dom": "^8.20.1",
"@lwc/engine-server": "^8.20.1",
"@lwc/jest-preset": "^19.1.0",
"@lwc/jest-shared": "^19.1.0",
"@lwc/jest-transformer": "^19.1.0",
"@lwc/synthetic-shadow": "^8.20.1",
"@lwrjs/client-modules": "^0.18.3",
"@lwrjs/config": "^0.18.3",
"@lwrjs/core": "^0.18.3",
"@lwrjs/label-module-provider": "^0.18.3",
"@lwrjs/loader": "^0.18.3",
"@lwrjs/markdown-view-provider": "^0.18.3",
"@lwrjs/o11y": "^0.18.3",
"@lwrjs/router": "^0.18.3",
"@lwrjs/shared-utils": "^0.18.0",
"@lwrjs/types": "^0.18.3",
"@prettier/plugin-xml": "3.4.2",
"@salesforce/eslint-config-lwc": "^4.0.0",
"@salesforce/sfdx-lwc-jest": "^7.0.0",
"@salesforce/wire-service-jest-util": "^4.1.4",
"@trivago/prettier-plugin-sort-imports": "^5.0.0",
"eslint": "^9.0.0",
"husky": "^9.0.11",
"jest": "^30.0.0",
"jest-environment-jsdom": "^30.0.0",
"lint-staged": "^16.0.0",
"lwc": "^8.20.1",
"lwr": "^0.18.3",
"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"
]
},
"dependencies": {
"@lukethacoder/lwrjs-lwc-module-provider": "^0.12.2"
}
}