-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.36 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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"packageManager": "[email protected]",
"scripts": {
"build": "yarn workspaces foreach --all -piv --topological-dev run build",
"dev": "yarn workspaces foreach --all -piv run dev",
"format": "yarn prettier -wu '**/*' --ignore-path .lintignore",
"lint": "yarn lint:eslint && yarn lint:prettier && yarn lint:stylelint",
"lint:eslint": "eslint --ignore-pattern .lintignore $INIT_CWD",
"lint:prettier": "prettier --check --ignore-unknown --ignore-path .lintignore $INIT_CWD",
"lint:stylelint": "stylelint --ignore-path .lintignore $INIT_CWD",
"postinstall": "husky install"
},
"devDependencies": {
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.45.1",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"postcss": "^8.4.47",
"postcss-html": "^1.7.0",
"prettier": "^3.3.3",
"prettier-plugin-jsdoc": "^1.3.0",
"prettier-plugin-organize-imports": "^4.1.0",
"prettier-plugin-pkg": "^0.18.1",
"prettier-plugin-svelte": "^3.2.7",
"stylelint": "^16.10.0",
"stylelint-config-recess-order": "^5.1.1",
"stylelint-config-standard-scss": "^13.1.0",
"svelte": "^4.2.19",
"typescript": "^5.6.3",
"typescript-eslint": "^8.10.0"
},
"volta": {
"node": "23.0.0",
"yarn": "4.5.0"
}
}