forked from vercel-labs/portless
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.03 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.03 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": "portless-monorepo",
"private": true,
"type": "module",
"packageManager": "pnpm@9.15.4",
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "turbo lint",
"lint:fix": "turbo lint:fix",
"test": "turbo test",
"test:e2e": "turbo test:e2e",
"test:coverage": "turbo test:coverage",
"test:watch": "turbo test:watch",
"typecheck": "turbo typecheck",
"ci:version": "changeset version",
"ci:publish": "pnpm build && changeset publish",
"prepare": "husky"
},
"devDependencies": {
"@changesets/cli": "^2.30.0",
"@eslint/js": "^9.39.2",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"turbo": "^2.8.10",
"typescript-eslint": "^8.55.0"
},
"lint-staged": {
"*.{ts,js}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml}": "prettier --write"
}
}