-
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.19 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.19 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
{
"name": "trendweight-monorepo",
"private": true,
"packageManager": "npm@11.15.0",
"workspaces": [
"apps/api",
"apps/web"
],
"scripts": {
"dev": "tmuxinator start",
"dev:stop": "tmuxinator stop trendweight",
"build": "turbo run build",
"test": "turbo run test",
"check": "turbo run typecheck lint",
"check:ci": "turbo run format:check typecheck lint",
"format": "turbo run format",
"fix": "turbo run format && turbo run typecheck lint",
"clean": "turbo run clean && npm run clean:root",
"clean:root": "rm -rf .turbo node_modules",
"clean:all": "npm run clean && find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +",
"docker:build": "./scripts/docker-build.sh",
"docker:run": "./scripts/docker-run.sh",
"install:all": "npm install --workspaces --include-workspace-root",
"outdated": "npm outdated --workspaces --include-workspace-root",
"update": "npm update --workspaces --include-workspace-root",
"prepare": "husky"
},
"devDependencies": {
"husky": "9.1.7",
"lint-staged": "16.4.0",
"turbo": "2.9.14"
},
"version": "2.0.0-alpha.1",
"dependencies": {
"@supabase/supabase-js": "2.106.1"
}
}