-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1.29 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
{
"name": "rsm-hcd-javscript",
"homepage": "https://rsm-hcd.github.io/hcd-javascript",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/rsm-hcd/hcd-javscript.git"
},
"scripts": {
"build": "turbo run build",
"build:prod": "turbo run build:prod",
"clean": "turbo run clean",
"dev": "dotenvx run -- turbo run dev",
"docs": "typedoc",
"test": "turbo run test",
"test:watch": "dotenvx run -- turbo run test:watch",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"publish-packages": "turbo run lint test build:prod && changeset version && pnpm install && pnpm changeset tag && pnpm publish -r --access=public",
"prepare": "husky"
},
"devDependencies": {
"@changesets/cli": "^2.27.9",
"@dotenvx/dotenvx": "^1.20.1",
"@rsm-hcd/tsconfig": "workspace:*",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"turbo": "^2.2.3",
"typedoc": "^0.26.10",
"typescript": "^5.6.3"
},
"engines": {
"node": ">=20",
"pnpm": ">=9"
},
"packageManager": "pnpm@9.12.2"
}