mirror of
https://github.com/penxio/penx.git
synced 2026-01-15 00:18:08 -05:00
37 lines
971 B
JSON
37 lines
971 B
JSON
{
|
|
"name": "ink",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "turbo run build",
|
|
"build:web": "turbo run build --filter=web...",
|
|
"build:packages": "turbo run build --filter=./packages/*",
|
|
"dev": "turbo run dev",
|
|
"clean": "git clean -xdf node_modules",
|
|
"lint": "turbo run lint",
|
|
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
|
|
"test": "echo",
|
|
"prepare": "husky install"
|
|
},
|
|
"lint-staged": {
|
|
"*.{js,jsx,less,md,json}": [
|
|
"prettier --write"
|
|
],
|
|
"*.ts?(x)": [
|
|
"prettier --parser=typescript --write"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"@commitlint/cli": "^17.7.1",
|
|
"@commitlint/config-conventional": "^17.7.0",
|
|
"@ianvs/prettier-plugin-sort-imports": "4.1.0",
|
|
"@turbo/gen": "^1.10.14",
|
|
"eslint": "^8.49.0",
|
|
"eslint-config-custom": "workspace:*",
|
|
"husky": "^8.0.3",
|
|
"lint-staged": "^13.3.0",
|
|
"prettier": "^3.0.3",
|
|
"turbo": "^1.10.14"
|
|
},
|
|
"packageManager": "pnpm@8.7.6"
|
|
}
|