-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.81 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.81 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
{
"name": "doula-cooperative",
"module": "index.ts",
"type": "module",
"private": true,
"scripts": {
"prepare": "git config core.hooksPath .githooks",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx",
"lint:fix": "eslint . --ext .ts,.tsx,.js,.jsx --fix",
"format": "prettier --write .",
"hugo:dev": "bun scripts/sync-profiles-to-hugo.ts && cd hugo && hugo server --disableFastRender -D",
"build:local": "rm -rf hugo/public && cd hugo && hugo && bun run index",
"build": "cd hugo && hugo --minify && bun run index",
"index": "bunx pagefind --site hugo/public",
"build:search": "bun run build && bun run index",
"emulators:start": "firebase emulators:start --only functions,firestore,auth --import=emulator-seed-data",
"emulators:export": "firebase emulators:export emulator-seed-data",
"angular:start": "cd members && bun start",
"functions:start": "cd functions && bun run build:watch",
"start": "bun run --parallel emulators:start functions:start angular:start hugo:dev",
"start:prod": "cd members && VITE_USE_PRODUCTION=true bun run start:prod",
"e2e": "cd members && bun run e2e",
"migrate:imagekit": "bun scripts/migrate-images-to-imagekit.ts",
"migrate:imagekit:dry": "bun scripts/migrate-images-to-imagekit.ts --dry-run"
},
"devDependencies": {
"@commitlint/cli": "^20.5.3",
"@commitlint/config-conventional": "^20.5.3",
"@imagekit/nodejs": "^7.5.0",
"@types/bun": "^1.3.13",
"eslint": "^9.39.4",
"eslint-plugin-unicorn": "^63.0.0",
"firebase-admin": "^13.8.0",
"firebase-tools": "^15.16.0",
"prettier": "^3.8.3",
"prettier-plugin-go-template": "^0.0.15",
"prettier-plugin-organize-imports": "^4.3.0",
"sharp": "^0.34.5",
"typescript-eslint": "^8.59.2"
},
"peerDependencies": {
"typescript": "^5.9.3"
}
}