-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 733 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 733 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
{
"name": "@sharemystack/monorepo",
"version": "0.0.1",
"scripts": {
"clear": "rm -f bun.lockb && find ./ -type d -and \\( -name node_modules -or -name build -or -name dist \\) -exec rm -rf '{}' +",
"ncu": "ncu",
"build": "CI=1 turbo run build",
"dev": "turbo run dev",
"types": "turbo run types",
"lint": "turbo run lint",
"manypkg": "manypkg check"
},
"dependencies": {
"@manypkg/cli": "0.21.2",
"npm-check-updates": "16.14.15",
"prettier": "3.2.5",
"supabase": "1.145.4",
"turbo": "1.12.4"
},
"workspaces": [
"apps/*",
"packages/*"
],
"overrides": {
"ajv": "8.12.0"
},
"packageManager": "bun@1.0.25",
"license": "UNLICENSED",
"private": true
}