-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
73 lines (73 loc) · 2.8 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
{
"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",
"generate:utam": "utam-generate -c utam.config.json",
"test:ssr:server": "jest --no-cache --projects=./example-ssr/jest.ssr-server.config.js",
"test:ssr:client": "jest --no-cache --projects=./example-ssr/jest.ssr-client.config.js",
"compile:utam": "utam --config utam.config.json",
"test:component:visual": "wdio run ./wdio.visual.config.js",
"test:component:interactivity": "yarn compile:utam && wdio run ./wdio.interactivity.config.js",
"test:component": "yarn test:component:interactivity && yarn test:component:visual",
"test:performance": " wdio run ./wdio.performance.config.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/module-resolver": "^8.1.0",
"@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",
"@wdio/cli": "^9.0.9",
"@wdio/local-runner": "^9.0.9",
"@wdio/spec-reporter": "^9.0.8",
"@wdio/types": "9.0.8",
"@wdio/visual-service": "^6.0.0",
"chromedriver": "^129.0.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",
"lwr": "0.14.0",
"prettier": "^2.0.0",
"semver": "^7.6.0",
"utam": "^3.2.2",
"wdio-utam-service": "^3.2.2",
"webdriver-image-comparison": "^7.0.0",
"webdriverio": "^9.0.9",
"@types/jasmine": "5.1.4",
"@wdio/jasmine-framework": "9.0.9",
"@utam/core": "^3.2.2",
"@utam/loader": "3.2.2",
"@webcomponents/template-shadowroot": "0.2.1"
},
"lint-staged": {
"**/*.{js,mjs,ts}": "eslint --fix",
"**/*.{js,mjs,ts,json,md,yaml}": "prettier --write"
},
"volta": {
"node": "20.17.0",
"yarn": "1.22.22"
},
"version": "1.0.0"
}