-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.97 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.97 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
46
47
48
49
50
51
{
"name": "synapse",
"version": "0.1.0",
"private": true,
"workspaces": [
"packages/shared",
"packages/api",
"packages/remote-agent-daemon",
"packages/web-next"
],
"scripts": {
"dev:api": "npm run dev -w packages/api",
"dev:daemon": "npm run dev -w packages/remote-agent-daemon",
"dev:web": "npm run dev -w packages/web-next",
"dev:mock-chat": "node .workbuddy/mock-chat-completions-server.cjs",
"prepare": "git config core.hooksPath .githooks",
"format": "node scripts/format-files.mjs --all",
"format:check": "node scripts/format-files.mjs --all --check",
"format:staged": "lint-staged",
"build": "npm run build -w packages/shared && npm run build -w packages/api && npm run build -w packages/remote-agent-daemon && npm run build -w packages/web-next",
"build:shared": "npm run build -w packages/shared",
"build:api": "npm run build -w packages/api",
"build:daemon": "npm run build -w packages/remote-agent-daemon",
"build:web": "npm run build -w packages/shared && npm run build -w packages/web-next",
"audit:business-enums": "node ./scripts/audit-business-enum-literals.mjs",
"db:bootstrap": "npm run db:bootstrap -w packages/api",
"db:codegen": "npm run db:codegen -w packages/api",
"db:seed": "npm run db:seed -w packages/api",
"db:rebuild": "npm run db:rebuild -w packages/api"
},
"overrides": {
"react": "^19.2.0",
"react-dom": "^19.2.0",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3"
},
"devDependencies": {
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"lint-staged": "^16.4.0",
"prettier": "^3.8.3",
"prettier-plugin-tailwindcss": "^0.7.4",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"shadcn": "^4.0.5"
},
"lint-staged": {
"*.{js,mjs,cjs,jsx,ts,tsx,json,css,md,mdx,yml,yaml,html}": "node scripts/format-files.mjs --formatter=prettier",
"relay/**/*.go": "node scripts/format-files.mjs --formatter=gofmt"
}
}