-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.28 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.28 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
50
51
52
{
"private": true,
"workspaces": [
"packages/*",
"scripts/*"
],
"scripts": {
"build:eslint-config": "pnpm --dir ./packages/eslint-config build",
"build": "turbo build",
"dev": "turbo dev --no-cache --continue",
"format:check": "prettier --check \"**/*.{js,json,md,ts}\"",
"format": "prettier --write \"**/*.{js,json,md,ts}\"",
"lint": "turbo lint",
"prepare": "husky install",
"publish": "changeset publish",
"release": "pnpm run build && pnpm run publish",
"test": "turbo test",
"type-check": "turbo type-check"
},
"devDependencies": {
"@changesets/cli": "^2.29.5",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@phi.school/eslint-config": "workspace:*",
"@phi.school/prettier-config": "workspace:*",
"@types/node": "^24.1.0",
"dotenv": "^17.2.0",
"eslint": "^9.31.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"prettier": "^3.6.2",
"tsup": "^8.5.0",
"turbo": "^2.5.5",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"eslintConfig": {
"extends": [
"@phi.school/eslint-config"
]
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix",
"*.{js,json,md,ts}": "prettier --write"
},
"prettier": "@phi.school/prettier-config"
}