This repository has been archived by the owner on Oct 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
82 lines (82 loc) · 2.59 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
{
"name": "svite-monorepo",
"private": true,
"scripts": {
"lint": "run-p lint:script lint:style",
"test": "echo 'currently no tests'",
"build": "pnpm -r build",
"build:svite": "pnpm --dir packages/svite build",
"lint:script": "eslint --ignore-path .gitignore '**/*.{js,ts,svelte,html,svx,md}'",
"lint:style": "stylelint --ignore-path .gitignore '**/*.{css,scss,html}'",
"lint:fix": "run-s lint:fix:script lint:fix:style",
"lint:fix:script": "pnpm lint:script --fix",
"lint:fix:style": "pnpm lint:style --fix",
"format": "prettier --check --ignore-path .prettierignore '**/*.{css,scss,svelte,html,js,ts,svx,md}'",
"format:fix": "pnpm format --write",
"fixup": "run-s lint:fix format:fix",
"prepare": "husky install"
},
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@microsoft/api-extractor": "^7.34.8",
"@types/fs-extra": "^11.0.1",
"@types/node": "^18.16.5",
"@types/semver": "^7.3.13",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"chalk": "^5.0.1",
"conventional-changelog-cli": "^2.2.2",
"cross-env": "^7.0.3",
"enquirer": "^2.3.6",
"eslint": "^8.40.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-markdown": "^3.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-svelte3": "^4.0.0",
"execa": "^6.0.0",
"fs-extra": "^11.1.1",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"minimist": "^1.2.8",
"npm-run-all": "^4.1.5",
"postcss-html": "^1.5.0",
"prettier": "^2.8.8",
"prettier-plugin-svelte": "^2.10.0",
"rimraf": "^4.4.1",
"semver": "^7.5.0",
"sirv": "^2.0.3",
"slash": "^5.0.1",
"stylelint": "^14.16.1",
"stylelint-config-prettier": "^9.0.5",
"stylelint-config-recommended": "^9.0.0",
"svelte": "^3.59.0",
"typescript": "^5.0.4",
"vite": "^3.2.6"
},
"lint-staged": {
"*.{js,ts,svelte,html,md,svx}": "eslint --fix",
"*.{css,scss,html}": "stylelint --fix",
"*.{css,scss,svelte,html,js,ts,svx,md}": "prettier --write --ignore-path .prettierignore"
},
"packageManager": "[email protected]",
"engines": {
"pnpm": "^7.9.0",
"yarn": "forbidden, use pnpm",
"npm": "forbidden, use pnpm"
},
"pnpm": {
"overrides": {
"semver-regex@<3.1.3": "^3.1.3",
"trim-newlines@<3.0.1": "^3.0.1",
"simple-get@<3.1.1": "^3.1.1"
},
"peerDependencyRules": {
"allowedVersions": {
"stylus": "^0.59.0"
}
}
}
}