-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.74 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
55
56
57
{
"scripts": {
"commit": "cz",
"eslint:check": "eslint \"./**/*.{ts,tsx,js,jsx}\"",
"eslint:fix": "pnpm eslint:check -- --fix",
"lint": "pnpm eslint:check && pnpm prettier:check",
"prepare": "husky",
"prettier:check": "prettier --check \"*{ts,tsx,js,json,*rc}\"",
"prettier:write": "prettier --write \"*{ts,tsx,js,json,*rc}\"",
"syncpack": "syncpack",
"test": "jest"
},
"lint-staged": {
"*.@(ts|tsx)": "bash -c 'tsc --skipLibCheck --noEmit'",
"*.@(ts|tsx|js|jsx)": "eslint --fix",
"*.@(ts|tsx|js|jsx|json|jsonc|json5|md|mdx|yaml|yml)": "prettier --write"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"depcheck": "^1.4.7",
"prettier-plugin-sh": "^0.14.0",
"sort-package-json": "^2.7.0",
"syncpack": "^12.3.0"
},
"devDependencies": {
"@commitlint/cli": "^18.6.0",
"@commitlint/config-conventional": "^18.6.0",
"@swc/cli": "^0.3.9",
"@swc/core": "^1.4.0",
"@swc/jest": "^0.2.36",
"@types/jest": "^29.5.12",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"cz-emoji-conventional": "^1.0.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.0.0",
"husky": "^9.0.10",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"pretty-quick": "^4.0.0",
"supertest": "^6.3.4",
"ts-jest": "^29.1.2",
"typescript": "*"
}
}