-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.43 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 2.43 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
{
"name": "fizz-kidz",
"version": "1.0",
"private": true,
"type": "module",
"packageManager": "npm@11.6.2",
"engines": {
"node": "22.23.2"
},
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "vp build",
"check": "vp check",
"check:astro": "npm --workspace docs run check && npm --workspace website run check",
"portal": "VP_PORTAL_ONLY=true vp dev --mode dev",
"portal:local": "VP_PORTAL_ONLY=true vp dev --mode emulator",
"portal:prod": "VP_PORTAL_ONLY=true vp dev --mode prod",
"dev": "vp dev --mode emulator",
"docs": "npm --workspace docs run dev",
"server": "vp run server:prepare && vp run server:watch",
"server:prepare": "npm --workspace server run dev:build",
"server:watch": "vp exec concurrently --kill-others --kill-timeout 3000 --names server:types,shared:types,server:build,firebase --prefix-colors blue,magenta,cyan,yellow --pad-prefix \"npm --workspace server run dev:typecheck\" \"npm --workspace @fizz-kidz/core run dev:typecheck\" \"npm --workspace server run dev:build:watch\" \"\\\"${VP_HOME:-$HOME/.vite-plus}/bin/vp\\\" env exec npm exec -- firebase emulators:start --project dev --only functions,pubsub --inspect-functions\"",
"test": "vp test --run",
"verify": "vp check --fix && vp test --run",
"verify:full": "npm run check:astro && npm run verify",
"website": "npm --workspace website run dev",
"website:local": "npm --workspace website run dev:local",
"website:prod": "npm --workspace website run dev:prod"
},
"devDependencies": {
"@sentry/vite-plugin": "^4.6.1",
"@types/node": "^22.19.0",
"@typescript/native": "npm:typescript@^7.0.2",
"@vitejs/plugin-react": "^5.2.0",
"@vitest/coverage-v8": "4.1.10",
"@vitest/ui": "4.1.10",
"babel-plugin-react-compiler": "^1.0.0",
"concurrently": "^9.2.4",
"cookie": "2.0.1",
"firebase-tools": "15.24.0",
"jsdom": "^29.1.1",
"react-hook-form": "7.72.1",
"typescript": "npm:@typescript/typescript6@^6.0.2",
"vite": "npm:@voidzero-dev/vite-plus-core@0.2.6",
"vite-plus": "0.2.6",
"zod": "3.25.76"
},
"overrides": {
"react": "19.2.3",
"react-dom": "19.2.3",
"vite": "npm:@voidzero-dev/vite-plus-core@0.2.6",
"vitest": "4.1.10"
}
}