-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 941 Bytes
/
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
{
"name": "@lwc-garden/example-minimal-config",
"private": true,
"version": "1.0.0",
"description": "minimal-config",
"type": "module",
"scripts": {
"dev": "npx @lwc-garden/core dev"
},
"devDependencies": {
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"typescript": "^5.4.3"
},
"dependencies": {
"@lwc-garden/core": "1.0.1",
"@lwc/engine-dom": "^6.5.0",
"@lwc/synthetic-shadow": "^6.5.0",
"@lwrjs/client-modules": "^0.12.2",
"@lwrjs/config": "^0.12.2",
"@lwrjs/core": "^0.12.2",
"@lwrjs/label-module-provider": "^0.12.2",
"@lwrjs/loader": "^0.12.2",
"@lwrjs/markdown-view-provider": "^0.12.2",
"@lwrjs/o11y": "^0.12.2",
"@lwrjs/router": "^0.12.2",
"@lwrjs/types": "^0.12.2",
"lwc": "^6.5.0",
"lwr": "^0.12.2"
},
"lint-staged": {
"**/*.{css,html,js,json,md,yaml,yml}": ["prettier --write"],
"**/lwc/**/*.js": ["eslint --cache --fix"]
}
}