-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.48 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
{
"name": "@dotmh/ts-base",
"version": "1.0.0",
"description": "The basic typescript project setup for DotMH",
"main": "index.js",
"type": "module",
"prettier": "@dotmh/prettier-config",
"scripts": {
"test": "pnpm run -r test",
"test:watch": "vitest",
"test:coverage": "pnpm run -r test:coverage",
"prepare": "husky",
"build": "smart-builder",
"build:dry-run": "SKIP_BUILD=yes smart-builder",
"lint": "eslint . --fix --ext .ts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint:check": "eslint . --ext .ts --fix-dry-run",
"lint:secrets": "secretlint \"**/*\"",
"githook:prepush": "pnpm run lint:secrets && pnpm run lint:check && pnpm run format:check && pnpm run test",
"githook:precommit": "pnpm run lint:secrets"
},
"keywords": [],
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@dotmh/eslint-config-ts": "^2.0.0",
"@dotmh/prettier-config": "^2.0.0",
"@dotmh/smart-builder": "^1.2.3",
"@dotmh/tsconfig": "^2.1.0",
"@secretlint/secretlint-rule-preset-recommend": "^9.0.0",
"@types/node": "20.16.10",
"@vitest/coverage-istanbul": "^2.1.4",
"eslint": "^8.57.1",
"husky": "^9.1.6",
"prettier": "^3.3.3",
"secretlint": "^9.0.0",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"vitest": "^2.1.4"
},
"engines": {
"node": "^20.14.0",
"pnpm": "^9.4.0"
}
}