forked from salesforce/lwc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 3.94 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
{
"name": "lwc-monorepo",
"version": "2.50.0",
"private": true,
"description": "Lightning Web Components",
"repository": {
"type": "git",
"url": "https://github.com/salesforce/lwc.git"
},
"scripts": {
"prepare": "husky install && yarn build",
"lint": "eslint packages/ scripts/ --ext=js,mjs,ts",
"format": "prettier --write '{packages,scripts}/**/*.{js,mjs,ts,json,md}'",
"bundlesize": "node scripts/bundlesize/bundlesize.mjs",
"build": "nx run-many --target=build --all --exclude=@lwc/perf-benchmarks,@lwc/perf-benchmarks-components,@lwc/integration-tests",
"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",
"dev": "nx run-many --target=dev --all --parallel=999 --exclude=@lwc/perf-benchmarks,@lwc/perf-benchmarks-components,@lwc/integration-tests",
"test": "jest --config ./scripts/jest/root.config.js",
"test:debug": "node --inspect node_modules/.bin/jest --config ./scripts/jest/root.config.js --runInBand --watch",
"test:ci": "yarn test --no-cache --coverage --runInBand",
"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",
"release:version": "./scripts/release/version.js"
},
"//": {
"@babel/helper-explode-assignable-expression": "required for rollup-plugin-compat"
},
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/helper-explode-assignable-expression": "^7.18.6",
"@babel/preset-env": "^7.22.5",
"@commitlint/cli": "^17.6.5",
"@lwc/eslint-plugin-lwc-internal": "link:./scripts/eslint-plugin",
"@lwc/jest-utils-lwc-internals": "link:./scripts/jest/utils",
"@rollup/plugin-commonjs": "^25.0.1",
"@rollup/plugin-inject": "^5.0.3",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-typescript": "^11.1.1",
"@types/babel__core": "^7.20.1",
"@types/jest": "^29.5.2",
"@types/node": "^20.3.1",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"bytes": "^3.1.2",
"es-module-lexer": "^1.3.0",
"es5-proxy-compat": "^0.22.4",
"eslint": "^8.42.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.1.7",
"fs-extra": "^11.1.1",
"glob": "^10.2.7",
"husky": "^8.0.2",
"is-ci": "^3.0.1",
"isbinaryfile": "^5.0.0",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"lint-staged": "^13.2.2",
"magic-string": "^0.30.0",
"nx": "16.3.2",
"prettier": "^2.8.8",
"rollup": "^3.25.1",
"rollup-plugin-compat": "^0.22.4",
"terser": "^5.18.0",
"ts-jest": "^29.1.0",
"tslib": "^2.5.3",
"typescript": "5.1.3",
"workerpool": "^6.4.0"
},
"lint-staged": {
"**/*.{js,mjs,ts}": "eslint",
"{packages,scripts}/**/*.{js,mjs,ts,json,md}": "prettier --write",
"{packages/**/package.json,scripts/tasks/check-and-rewrite-package-json.js}": "node ./scripts/tasks/check-and-rewrite-package-json.js"
},
"workspaces": [
"packages/@lwc/*",
"packages/lwc",
"playground"
],
"engines": {
"node": ">=10"
},
"volta": {
"node": "16.19.0",
"yarn": "1.22.19"
},
"resolutions": {
"//": [
"jasmine-core: Freezing jasmine version used in Karma test suite. jasmine-core@4 drops support for IE11."
],
"jasmine-core": "3.10.1"
}
}