forked from salesforce/lwc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 4.46 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "lwc-monorepo",
"version": "7.2.1",
"private": true,
"description": "Lightning Web Components",
"repository": {
"type": "git",
"url": "https://github.com/salesforce/lwc.git"
},
"scripts": {
"prepare": "husky && yarn build",
"lint": "eslint .",
"format": "prettier --write .",
"bundlesize": "node scripts/bundlesize/bundlesize.mjs",
"build": "nx run-many --target=build --exclude=@lwc/perf-benchmarks,@lwc/perf-benchmarks-components,@lwc/integration-tests,lwc",
"build:performance": "yarn build:performance:components && yarn build:performance:benchmarks",
"build:performance:components": "nx build @lwc/perf-benchmarks-components",
"build:performance:benchmarks": "nx build @lwc/perf-benchmarks",
"copy-fork": "./scripts/tasks/unsafe-external-contributor-ci-workaround.sh",
"dev": "nx run-many --target=dev --all --parallel=999 --exclude=@lwc/perf-benchmarks,@lwc/perf-benchmarks-components,@lwc/integration-tests,lwc",
"test": "vitest --workspace vitest.workspace.mjs",
"test:bespoke": "nx run-many --target=test",
"test:debug": "vitest --workspace vitest.workspace.mjs --inspect-brk --no-file-parallelism",
"test:ci": "vitest run --workspace vitest.workspace.mjs --coverage",
"test:karma": "nx test @lwc/integration-karma",
"test:integration": "nx sauce @lwc/integration-tests",
"test:performance": "nx test @lwc/perf-benchmarks",
"test:performance:best": "nx test:best @lwc/perf-benchmarks",
"test:performance:best:ci": "nx test:best:ci @lwc/perf-benchmarks",
"test:types": "nx test @lwc/integration-types",
"release:version": "nx release version",
"release:publish": "nx release publish --registry https://registry.npmjs.org"
},
"devDependencies": {
"@commitlint/cli": "^19.4.0",
"@eslint/compat": "^1.1.1",
"@eslint/js": "^9.9.0",
"@lwc/eslint-plugin-lwc-internal": "link:./scripts/eslint-plugin",
"@lwc/test-utils-lwc-internals": "link:./scripts/test-utils",
"@nx/js": "19.6.0",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-inject": "^5.0.5",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.7",
"@rollup/plugin-typescript": "^11.1.6",
"@swc-node/register": "~1.10.9",
"@swc/core": "~1.7.14",
"@swc/helpers": "~0.5.11",
"@types/babel__core": "^7.20.5",
"@types/node": "^22.4.1",
"@vitest/coverage-v8": "^2.0.5",
"@vitest/expect": "^2.0.5",
"@vitest/ui": "^2.0.5",
"@vitest/utils": "^2.0.5",
"bytes": "^3.1.2",
"es-module-lexer": "^1.5.4",
"eslint": "^9.9.0",
"eslint-config-flat-gitignore": "^0.1.8",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.8.0",
"glob": "^11.0.0",
"globals": "^15.9.0",
"husky": "^9.1.4",
"isbinaryfile": "^5.0.2",
"jsdom": "^24.1.1",
"lint-staged": "^15.2.9",
"magic-string": "^0.30.11",
"nx": "19.6.0",
"prettier": "^3.3.3",
"rollup": "^4.21.0",
"terser": "^5.31.6",
"tslib": "^2.6.3",
"typescript": "5.5.4",
"typescript-eslint": "^7.17.0",
"vitest": "^2.0.5"
},
"lint-staged": {
"*.{js,mjs,ts}": "eslint",
"*.{css,js,json,md,mjs,ts,yaml,yml}": "prettier --write",
"{packages/**/package.json,scripts/tasks/check-and-rewrite-package-json.js}": "node ./scripts/tasks/check-and-rewrite-package-json.js",
"{LICENSE-CORE.md,**/LICENSE.md,yarn.lock,scripts/tasks/generate-license-files.js,scripts/shared/bundled-dependencies.js}": "node ./scripts/tasks/generate-license-files.js",
"*.{only,skip}": "eslint --no-eslintrc --plugin '@lwc/eslint-plugin-lwc-internal' --rule '@lwc/lwc-internal/forbidden-filename: error'"
},
"workspaces": [
"packages/@lwc/*",
"packages/lwc",
"playground"
],
"engines": {
"node": ">=10"
},
"volta": {
"node": "20.12.2",
"yarn": "1.22.22"
},
"resolutions": {
"//": {
"http-cache-semantics": "Pinned to address security vulnerability",
"semver": "Pinned to address security vulnerability"
},
"http-cache-semantics": "4.1.1",
"semver": "7.6.0"
},
"dependencies": {}
}