-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.28 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
50
51
52
53
54
{
"name": "ts-bulk-suppress",
"version": "1.0.0",
"description": "A type-checker with suppressors",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tiktok/ts-bulk-suppress.git"
},
"bin": {
"ts-bulk-suppress": "./bin/index.js"
},
"scripts": {
"build": "rm -rf dist && tsc",
"build:watch": "rm -rf dist && tsc",
"lint": "eslint .",
"prettier": "prettier . --write",
"lint:error": "eslint . --quiet",
"test": "jest --detectOpenHandles",
"prepare": "husky install"
},
"devDependencies": {
"@eslint/js": "^9.19.0",
"@types/fs-extra": "9.0.13",
"@types/jest": "~29.2.4",
"@types/node": "~18.11.9",
"@types/react": "17.0.65",
"esbuild": "0.20.2",
"eslint": "~9.19.0",
"husky": "^8.0.0",
"jest": "29.7.0",
"lint-staged": "^15.4.3",
"prettier": "~3.4.2",
"rimraf": "~3.0.2",
"ts-jest": "29.1.2",
"typescript": "5.3.3",
"typescript-eslint": "^8.22.0"
},
"dependencies": {
"ajv": "^8.11.0",
"commander": "^8.1.0",
"fs-extra": "^10.1.0",
"json5": "2.2.3",
"loglevel": "~1.8.0",
"ts-morph": "21.0.1"
},
"jsnext:source": "./src/index.ts",
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
}
}