forked from jonwiggins/optio
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.13 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.13 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
{
"name": "optio",
"version": "0.1.0",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/jonwiggins/optio.git"
},
"scripts": {
"dev": "turbo dev",
"dev:api": "turbo dev --filter=@optio/api",
"dev:web": "turbo dev --filter=@optio/web",
"dev:site": "turbo dev --filter=@optio/site",
"build": "turbo build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "turbo typecheck",
"db:generate": "turbo db:generate",
"db:migrate": "turbo db:migrate",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^19.8.0",
"@commitlint/config-conventional": "^19.8.0",
"eslint": "^10.1.0",
"husky": "^9.1.0",
"lint-staged": "^16.1.0",
"prettier": "^3.5.0",
"turbo": "^2.5.0",
"typescript": "^5.7.0",
"typescript-eslint": "^8.33.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,yml,yaml,css,mjs}": [
"prettier --write"
]
},
"packageManager": "pnpm@10.11.0"
}