forked from muenzpraeger/create-lwc-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.32 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
{
"author": "René Winkelmeyer @muenzpraeger",
"homepage": "https://github.com/muenzpraeger/create-lwc-app",
"name": "root",
"workspaces": [
"packages/*"
],
"private": true,
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"eslint": "^6.4.0",
"husky": "^4.2.3",
"lerna": "^3.20.2",
"lint-staged": "^10.0.9",
"prettier": "^2.0.2",
"ts-node": "^8.8.1",
"typescript": "^3.6"
},
"scripts": {
"build": "lerna run build",
"clean": "lerna run clean && lerna clean --yes && rm -rf node_modules",
"lint": "eslint ./packages/**/src/**/*.ts",
"prepare": "npm run build",
"prettier": "prettier --write '**/*.{html,css,js,json,md,ts,yaml,yml}'",
"prettier:verify": "prettier --list-different '**/*.{html,css,js,json,md,ts,yaml,yml}'",
"publish-beta": "lerna publish from-package --dist-tag beta",
"publish-prod": "lerna publish from-package"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{html,js,json,ts,yaml,yml,md}": [
"prettier --write"
],
"**/packages/**/*.ts": [
"eslint"
]
}
}