reconcile/frontend/package.json
2025-03-16 20:37:40 +00:00

30 lines
No EOL
759 B
JSON

{
"name": "my-workspace",
"private": true,
"workspaces": [
"sync-client",
"obsidian-plugin",
"test-client"
],
"prettier": {
"trailingComma": "none",
"tabWidth": 4,
"useTabs": true,
"endOfLine": "lf"
},
"scripts": {
"build": "npm run build --workspaces",
"dev": "concurrently --kill-others \"npm run dev -w sync-client\" \"npm run dev -w obsidian-plugin\"",
"test": "npm run test --workspaces",
"lint": "eslint --fix sync-client obsidian-plugin test-client && prettier --write \"**/*.ts\"",
"update": "ncu -u -ws"
},
"devDependencies": {
"concurrently": "^9.1.2",
"eslint": "9.22.0",
"eslint-plugin-unused-imports": "^4.1.4",
"npm-check-updates": "^17.1.15",
"prettier": "^3.5.3",
"typescript-eslint": "8.26.1"
}
}