-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.18 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.18 KB
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": "@vralle/node-workspace",
"version": "0.4.0",
"type": "module",
"workspaces": [
"projects/*"
],
"engines": {
"node": ">=20.19.5"
},
"scripts": {
"build": "npm run build --workspaces --if-present",
"format": "dprint check",
"lint:js": "eslint --fix-dry-run --cache --cache-location .cache/.eslintcache .",
"lint:md": "markdownlint-cli2 \"**/*.md\" \"!**/node_modules/**\"",
"lint:spelling": "cspell lint --show-context .",
"test": "vitest run --pool=forks --testTimeout 10000"
},
"devDependencies": {
"@biomejs/biome": "^2.0",
"@dprint/json": "^0.21",
"@dprint/typescript": "^0.95",
"@eslint/js": "^9.29",
"@stylistic/eslint-plugin": "^5.1",
"@vitest/eslint-plugin": "^1.2",
"cspell": "^9.1",
"dprint": "^0.52",
"eslint": "^10.0",
"eslint-plugin-jsdoc": "^62.0",
"globals": "^17.0",
"malva": "^0.15",
"markdownlint-cli2": "^0.21",
"postcss": "^8.5",
"postcss-html": "^1.8",
"stylelint": "^17.1",
"stylelint-config-html": "^1.1",
"stylelint-config-standard": "^40.0",
"stylelint-config-standard-scss": "^17.0",
"typescript-eslint": "^8.34",
"vitest": "^4.0"
}
}