-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 791 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 791 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
{
"name": "@beep/monorepo",
"repository": {
"type": "git",
"url": "https://github.com/bnussman/beep.git"
},
"author": "Banks Nussman",
"scripts": {
"dev": "concurrently --raw \"pnpm --filter @beep/app dev\" \"pnpm --filter @beep/api dev\" \"pnpm --filter @beep/website dev\"",
"start:api": "pnpm --filter @beep/api start",
"start:app": "pnpm --filter @beep/app start",
"start:website": "pnpm --filter @beep/website dev",
"build:website": "pnpm --filter @beep/website build",
"typecheck": "pnpm run --parallel typecheck"
},
"private": true,
"resolutions": {
"react": "19.2.0",
"react-dom": "19.2.0",
"@expo/dom-webview": "55.0.5"
},
"volta": {
"node": "24.3.0"
},
"devDependencies": {
"concurrently": "^9.2.1"
}
}