-
-
Notifications
You must be signed in to change notification settings - Fork 225
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.23 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.23 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
43
44
45
46
47
{
"name": "eslint-js",
"private": true,
"type": "module",
"scripts": {
"build": "npm run build --workspaces --if-present",
"build:types": "npm run build:types --workspaces --if-present",
"lint": "eslint",
"lint:fix": "eslint --fix",
"lint:types": "npm run lint:types --workspaces --if-present",
"lint:unused": "knip",
"fmt": "prettier --write .",
"fmt:check": "prettier --check .",
"test": "npm test --workspaces --if-present"
},
"workspaces": [
"packages/*"
],
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,cjs,ts,cts}": [
"eslint --fix",
"prettier --write"
],
"!(*.{js,cjs,ts,cts})": "prettier --write --ignore-unknown"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@types/node": "^20.19.0",
"@typescript-eslint/parser": "^8.56.1",
"c8": "^11.0.0",
"eslint": "^10.0.3",
"eslint-config-eslint": "^14.0.0",
"eslint-plugin-chai-friendly": "^1.0.0",
"eslint-plugin-expect-type": "^0.6.2",
"globals": "^17.0.0",
"knip": "^6.0.0",
"lint-staged": "^16.0.0",
"mocha": "^11.1.0",
"prettier": "3.8.1",
"rollup": "^4.55.2",
"typescript": "^5.9.3",
"yorkie": "^2.0.0"
}
}