forked from capricorn86/happy-dom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1006 Bytes
/
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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"compile": "turbo run compile --cache-dir=.turbo",
"watch": "turbo run watch --parallel",
"clean": "git clean -Xdfq",
"lint": "turbo run lint --cache-dir=.turbo",
"lint:fix": "turbo run lint:fix",
"test": "turbo run test --cache-dir=.turbo",
"test:watch": "turbo run test:watch --parallel"
},
"devDependencies": {
"@types/he": "^1.1.2",
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"chalk": "^4.1.0",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^38.0.6",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "2.3.0",
"vitest": "^0.32.4",
"prettier": "^2.6.0",
"semver": "^7.3.5",
"turbo": "^1.7.3",
"typescript": "^5.0.4"
},
"engines": {
"node": ">=12.13"
}
}