-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 976 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 976 Bytes
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
{
"name": "open-retro",
"version": "0.0.1",
"private": true,
"workspaces": [
"server",
"web-client",
"shared"
],
"scripts": {
"dev": "npm run dev:client",
"dev:client": "cd web-client && npm run dev",
"dev:server": "cd server && bun --watch src/server.ts",
"dev:docs": "cd docs && npm run dev",
"build": "cd web-client && npm run build",
"build:docs": "cd docs && npm run build",
"format": "oxfmt server/src/ shared/ web-client/src/",
"lint": "oxlint server/src/ shared/ web-client/src/ --fix",
"lint:eslint": "cd web-client && npm run lint:eslint",
"prepare": "simple-git-hooks"
},
"devDependencies": {
"lint-staged": "^16.3.3",
"oxfmt": "^0.39.0",
"oxlint": "^1.54.0",
"simple-git-hooks": "^2.13.1"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{ts,vue}": ["oxfmt", "oxlint --fix"],
"web-client/src/**/*.{ts,vue}": "eslint --fix"
}
}