-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 2.15 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 2.15 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
{
"name": "crowdpm",
"private": true,
"workspaces": [
"functions",
"frontend",
"shared-types"
],
"packageManager": "pnpm@10.18.1",
"engines": {
"node": ">=24.15.0 <25"
},
"scripts": {
"prepare:functions-deps": "node scripts/prepare-functions-deps.mjs",
"predev": "pnpm run prepare:functions-deps && pnpm --filter crowdpm-functions build",
"dev": "concurrently -k -n FRONTEND,FUNCTIONS,FUNCTIONS_BUILD \"pnpm --filter crowdpm-frontend dev\" \"pnpm --filter crowdpm-functions exec firebase emulators:start --project crowdpm-local\" \"pnpm --filter crowdpm-functions build:watch\"",
"device:pair": "node scripts/device-emulator.mjs",
"build": "pnpm -r build",
"test": "pnpm -r test",
"test:frontend": "pnpm --filter crowdpm-frontend test:e2e",
"test:shared-types": "pnpm --filter @crowdpm/types test",
"typecheck": "pnpm --filter crowdpm-frontend typecheck",
"lint": "eslint \"{functions,frontend}/src/**/*.{ts,tsx}\" \"functions/test/**/*.ts\"",
"deploy": "sh -c 'if [ \"${1:-}\" = \"--\" ]; then shift; fi; test -n \"${FIREBASE_PROJECT_ID:-}\" || { echo \"Set FIREBASE_PROJECT_ID to the deployed Firebase project ID.\" >&2; exit 1; }; firebase deploy --project \"$FIREBASE_PROJECT_ID\" \"$@\"; deploy_status=$?; if [ $deploy_status -ne 0 ]; then exit $deploy_status; fi; if [ -n \"${FIRST_SUPER_ADMIN_EMAIL:-}\" ]; then pnpm --filter crowdpm-functions admin:bootstrap-super-admin; else echo \"FIRST_SUPER_ADMIN_EMAIL not set; skipping super admin bootstrap.\"; fi' --"
},
"devDependencies": {
"@rolldown/plugin-babel": "0.2.3",
"@eslint/eslintrc": "3.3.5",
"@eslint/js": "9.39.4",
"@typescript-eslint/eslint-plugin": "8.59.0",
"@typescript-eslint/parser": "8.59.0",
"babel-plugin-react-compiler": "1.0.0",
"concurrently": "9.2.1",
"eslint": "9.39.4",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.1.1"
},
"pnpm": {
"overrides": {
"qs": "6.15.1",
"@tootallnate/once": "3.0.1",
"protobufjs": "7.5.6",
"@protobufjs/utf8": "1.1.1",
"hono": "4.12.18",
"ip-address": "10.2.0",
"firebase-admin>uuid": "11.1.1"
}
}
}