-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 2.22 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "pulse",
"version": "0.2.2",
"description": "MissionPulse monorepo: Chrome extension, landing page, dashboard, and shared packages.",
"private": true,
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/guyghost/pulse.git"
},
"bugs": {
"url": "https://github.com/guyghost/pulse/issues"
},
"homepage": "https://github.com/guyghost/pulse#readme",
"packageManager": "pnpm@10.32.1",
"engines": {
"node": ">=22",
"pnpm": ">=10"
},
"scripts": {
"dev": "turbo dev",
"dev:local": "pnpm supabase:start && pnpm dev:env && pnpm dev",
"dev:env": "node scripts/write-local-supabase-env.mjs",
"build": "turbo build",
"test": "turbo test",
"test:e2e": "pnpm --filter @pulse/extension test:e2e",
"test:e2e:full": "pnpm --filter @pulse/extension test:e2e:full",
"test:watch": "turbo test:watch",
"lint": "turbo lint",
"typecheck": "turbo typecheck",
"perf:measure": "node scripts/performance/measure-page-load.mjs",
"format": "turbo format",
"format:check": "turbo format:check",
"supabase:start": "supabase start --workdir apps/landing && node scripts/patch-local-supabase-passkey-auth.mjs",
"supabase:stop": "supabase stop --workdir apps/landing",
"supabase:status": "supabase status --workdir apps/landing",
"supabase:reset": "supabase db reset --workdir apps/landing",
"ci:check": "pnpm format:check && pnpm lint && pnpm typecheck && pnpm test && pnpm build",
"deploy:preflight": "node scripts/deploy-preflight.mjs",
"improvement:loop": "node scripts/improvement-loop.mjs",
"clean": "turbo clean && rm -rf node_modules .turbo",
"prepare": "simple-git-hooks"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"pre-push": "pnpm ci:check"
},
"lint-staged": {
"apps/extension/**/*.{ts,svelte}": [
"pnpm --filter @pulse/extension exec eslint --fix",
"prettier --write"
],
"{apps/dashboard,apps/landing,packages}/**/*.{ts,svelte}": [
"prettier --write"
],
"*.{css,json,md}": [
"prettier --write"
]
},
"devDependencies": {
"lint-staged": "^17.0.8",
"simple-git-hooks": "^2.13.1",
"supabase": "^2.109.0",
"turbo": "^2.10.5"
}
}