-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.69 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.69 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
{
"name": "firebase-nextjs-template",
"version": "1.0.0",
"description": "Zero-configuration development environment for Firebase + Next.js projects",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"setup": "node scripts/setup.js",
"dev:all": "concurrently \"npm run firebase:emulators\" \"npm run dev\"",
"dev": "npm run dev --workspace=apps/web",
"dev:functions": "npm run dev --workspace=apps/functions",
"build": "npm run build --workspace=apps/web",
"build:functions": "npm run build --workspace=apps/functions",
"build:all": "npm run build --workspace=packages/shared-types && npm run build:functions && npm run build",
"start": "npm run start --workspace=apps/web",
"lint": "npm run lint --workspaces --if-present",
"lint:fix": "npm run lint:fix --workspaces --if-present",
"test": "npm run test --workspaces --if-present",
"test:watch": "npm run test:watch --workspaces --if-present",
"e2e:health": "node scripts/e2e-health.js",
"e2e:start": "node scripts/e2e-start.js",
"e2e:stop": "node scripts/e2e-stop.js",
"firebase:emulators": "firebase emulators:start",
"firebase:deploy": "firebase deploy",
"clean": "npm run clean --workspaces --if-present",
"typecheck": "npm run typecheck --workspaces --if-present"
},
"keywords": [
"firebase",
"nextjs",
"template",
"typescript",
"monorepo"
],
"author": "Firebase Next.js Template Contributors",
"license": "MIT",
"devDependencies": {
"concurrently": "^9.2.1",
"firebase-tools": "^13.35.1",
"prettier": "^3.3.3",
"typescript": "^5.6.3"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
}
}