forked from salesforce/lwc-test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.55 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
{
"name": "lwc-test",
"private": true,
"description": "LWC test plugins and utilities",
"scripts": {
"prepare": "husky",
"test": "jest --no-cache",
"clean": "lerna run clean && lerna clean --yes && rm -rf node_modules",
"lint": "eslint packages/ test/ --ext=js,mjs,ts",
"format": "prettier --write '{packages,test}/**/*.{js,mjs,ts,json,md,yaml}'",
"format:check": "prettier --check '{packages,test}/**/*.{js,mjs,ts,json,md,yaml}'",
"release:publish:ci": "./scripts/release/publish.js",
"release:version": "./scripts/release/version.js"
},
"workspaces": [
"packages/@lwc/*",
"test"
],
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.24.4",
"@lwc/compiler": "7.2.3",
"@lwc/engine-dom": "7.2.3",
"@lwc/engine-server": "7.2.3",
"@lwc/synthetic-shadow": "7.2.3",
"@lwc/wire-service": "7.2.3",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lerna": "^8.1.2",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"semver": "^7.6.0"
},
"lint-staged": {
"**/*.{js,mjs,ts}": "eslint --fix",
"**/*.{js,mjs,ts,json,md,yaml}": "prettier --write"
},
"volta": {
"node": "20.12.2",
"yarn": "1.22.22"
},
"version": "1.0.0"
}