forked from salesforce/lwc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.83 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
{
"name": "lwc-monorepo",
"private": true,
"description": "Lightning Web Components",
"repository": {
"type": "git",
"url": "https://github.com/salesforce/lwc.git"
},
"scripts": {
"prepare": "yarn build",
"clean": "lerna run clean && lerna clean --yes && rm -rf node_modules",
"lint": "eslint packages/ scripts/ --ext=js,ts",
"format": "prettier --write '{packages,scripts}/**/*.{js,ts,json,md}'",
"build": "lerna run build --ignore perf-benchmarks --ignore 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": "lerna exec --scope integration-tests -- yarn sauce",
"test:performance": "lerna exec --scope perf-benchmarks -- best --runner default",
"release:publish:ci": "./scripts/release/publish.js",
"release:version": "./scripts/release/version.js"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@commitlint/cli": "^11.0.0",
"@rollup/plugin-replace": "^2.3.4",
"@types/acorn": "^4.0.5",
"@types/babel__core": "^7.1.12",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.7",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"babel-plugin-tester": "^10.0.0",
"concurrently": "^5.3.0",
"es5-proxy-compat": "^0.22.1",
"eslint": "^7.13.0",
"eslint-plugin-jest": "^24.1.0",
"eslint-plugin-lwc-internal": "link:./scripts/eslint-plugin",
"execa": "^4.1.0",
"fs-extra": "^9.0.1",
"glob": "^7.1.6",
"husky": "^4.3.0",
"is-ci": "^2.0.0",
"isbinaryfile": "^4.0.6",
"jest": "^26.6.3",
"lerna": "^3.22.1",
"lint-staged": "^10.5.1",
"prettier": "^2.1.2",
"rollup": "^2.33.1",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-compat": "^0.22.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript": "^1.0.1",
"semver": "^7.3.2",
"tslib": "^2.0.3",
"typescript": "^4.0.5",
"worker-farm": "^1.7.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"**/*.{js,ts}": "eslint",
"{packages,scripts}/**/*.{js,ts,json,md}": "prettier --write"
},
"workspaces": [
"packages/@lwc/*",
"packages/lwc",
"packages/integration-karma",
"packages/integration-tests",
"packages/perf-benchmarks"
],
"engines": {
"node": ">=10"
},
"volta": {
"node": "12.18.2",
"yarn": "1.22.4"
},
"resolutions": {
"micromatch": "^4.0.2",
"meow": "^7.1.1",
"node-fetch": "^2.6.1"
}
}