forked from capricorn86/happy-dom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 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
43
44
45
46
47
48
49
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"compile": "turbo run compile --cache-dir=.turbo",
"watch": "turbo run watch --parallel",
"clean": "git clean -Xdfq",
"lint": "eslint --max-warnings 0 --cache --cache-location ./.turbo/eslint.cache .",
"lint:fix": "eslint --max-warnings 0 --cache --cache-location ./.turbo/eslint.cache --fix .",
"test": "turbo run test --cache-dir=.turbo",
"test:watch": "turbo run test:watch --parallel",
"prepare": "husky install"
},
"devDependencies": {
"@types/he": "^1.1.2",
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"chalk": "^4.1.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^48.0.2",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^5.1.3",
"happy-conventional-commit": "^0.1.0",
"husky": "^9.0.6",
"prettier": "^3.2.4",
"semver": "^7.3.5",
"turbo": "^1.11.3",
"typescript": "^5.0.4",
"vitest": "^2.0.5"
},
"happyLintChanged": {
"rules": [
{
"command": "eslint --max-warnings 0 --cache --cache-location ./.turbo/eslint.cache --fix",
"regexp": "^[a-zA-Z0-9_].*\\.(cjs|mjs|js|jsx|ts|tsx|json)$"
}
]
},
"engines": {
"node": ">=18.0.0"
}
}