generated from karolis-sh/template-javascript
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
62 lines (62 loc) · 1.86 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
{
"name": "electron-snowpack",
"version": "0.0.0",
"private": true,
"keywords": [
"electron",
"snowpack",
"esbuild"
],
"repository": "karolis-sh/electron-snowpack",
"license": "MIT",
"author": "Karolis Šarapnickis",
"workspaces": [
"packages/*",
"examples/*",
"playground/*"
],
"scripts": {
"build": "lerna run build --ignore @playground/* --parallel",
"clean": "lerna run --parallel clean",
"commit": "npx cz",
"format": "run-p format:*",
"format:package.json": "sort-package-json package.json packages/*/package.json examples/*/package.json",
"format:prettier": "prettier --write '**/*.*'",
"lerna": "lerna",
"lint": "run-p lint:*",
"lint:js": "eslint . --cache --ignore-path .gitignore",
"lint:md": "markdownlint-cli2 '**/*.md' '!node_modules' '!**/node_modules' '!**/CHANGELOG.md'",
"prepublish": "cp README.md packages/electron-snowpack",
"qa": "run-p lint",
"release": "yarn && run-p qa build && yarn lerna publish --no-private --conventional-commits --create-release github --no-commit-hooks",
"prepare": "husky install"
},
"lint-staged": {
"**/package.json": "sort-package-json",
"*.{js}": "eslint --fix"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@k.sh/eslint-plugin": "^0.6.0",
"@k.sh/prettier-config": "^0.4.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.30.0",
"husky": "^7.0.0",
"lerna": "^4.0.0",
"lint-staged": ">=10",
"markdownlint-cli2": "^0.5.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.1",
"prettier-plugin-sh": "^0.12.8",
"prettier-plugin-svelte": "^2.9.0",
"pretty-quick": "^3.1.3",
"sort-package-json": "^2.1.0",
"svelte": "^3.32.0"
}
}