-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.33 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.33 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
48
49
{
"name": "dotenv-diff-root",
"version": "0.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "turbo build",
"test": "turbo test",
"coverage": "turbo coverage",
"dev": "turbo dev",
"lint": "turbo lint",
"prepare": "husky",
"lint-staged": "lint-staged",
"format": "turbo format",
"changeset": "changeset",
"release:notes": "node scripts/update-root-changelog.mjs",
"changelog:root": "node scripts/update-root-changelog.mjs --write",
"version": "pnpm run changelog:root && changeset version",
"release": "changeset publish"
},
"lint-staged": {
"*.{ts,js}": [
"prettier --write",
"eslint --fix --max-warnings=0"
],
"*.{json,md,yml}": [
"prettier --write"
]
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@repo/eslint-config": "workspace:*",
"@repo/tsconfig": "workspace:*",
"@repo/vitest": "workspace:*",
"@types/node": "^25.5.0",
"@types/prompts": "^2.4.9",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"@vitest/coverage-v8": "4.0.18",
"eslint": "^9.39.4",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"turbo": "^2.9.3",
"typescript": "^5.9.3",
"vitest": "^4.1.2"
},
"packageManager": "pnpm@10.30.3"
}