-
Notifications
You must be signed in to change notification settings - Fork 254
/
package.json
74 lines (74 loc) · 2.4 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "lwc-recipes-oss",
"version": "1.0.0",
"author": "Salesforce Developer Evangelism",
"bugs": "https://github.com/trailheadapps/lwc-recipes-oss/issues",
"dependencies": {
"@fastify/static": "^7.0.4",
"chart.js": "^4.4.4",
"d3": "^7.9.0",
"fastify": "^4.26.2",
"lwc": "^6.5.0",
"lwc-recipes-oss-ui-components": "^0.3.2",
"lwr": "^0.12.4",
"wired-elements": "^3.0.0-rc.6"
},
"description": "Lightning Web Components Recipes Open Source",
"devDependencies": {
"@lwc/eslint-plugin-lwc": "^1.8.2",
"@lwc/jest-preset": "^16.1.0",
"@sa11y/jest": "6.10.1",
"@salesforce/eslint-config-lwc": "^3.6.0",
"@salesforce/eslint-plugin-lightning": "^1.0.0",
"@salesforce/wire-service-jest-util": "^4.1.5",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jest": "^28.8.3",
"husky": "^9.1.6",
"jest": "^29.7.0",
"jest-canvas-mock": "^2.5.2",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.9",
"prettier": "^3.3.3",
"rimraf": "^5.0.7"
},
"homepage": "https://github.com/trailheadapps/lwc-recipes-oss",
"keywords": [
"lwc"
],
"license": "CC0-1.0",
"repository": "trailheadapps/lwc-recipes-oss",
"scripts": {
"build": "lwr build",
"clean": "rimraf __lwr_cache__ && rimraf site",
"dev": "lwr dev",
"lint": "eslint **/src/**/*.js",
"prettier": "prettier --write \"**/*.{css,html,js,mjs,json,md,yaml,yml}\"",
"prettier:verify": "prettier --check \"**/*.{css,html,js,mjs,json,md,yaml,yml}\"",
"postinstall": "husky install",
"precommit": "lint-staged",
"start": "node scripts/start-server.mjs",
"test": "npm run test:unit",
"test:unit": "jest",
"test:unit:watch": "jest --watch",
"test:unit:coverage": "jest --coverage",
"test:unit:debug": "jest --debug"
},
"engines": {
"node": "18.x"
},
"lint-staged": {
"**/*.{cls,cmp,component,css,html,js,mjs,json,md,page,trigger,xml,yaml,yml}": [
"prettier --write"
],
"**/src/**/*.js": [
"eslint"
],
"**/src/**": [
"jest --bail --findRelatedTests --passWithNoTests"
]
},
"volta": {
"node": "18.18.0"
}
}