-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.73 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.73 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
{
"name": "logbase-website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "cross-env FIRESTORE_EMULATOR_HOST=\"127.0.0.1:8081\" FIREBASE_STORAGE_EMULATOR_HOST=\"127.0.0.1:9199\" NEXT_PUBLIC_FIRESTORE_EMULATOR_HOST=\"127.0.0.1:8081\" NEXT_PUBLIC_AUTH_EMULATOR_HOST=\"127.0.0.1:9099\" next dev",
"emulators": "firebase emulators:start",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare-deploy": "node scripts/prepare-deploy.js",
"deploy:hosting": "firebase deploy --only hosting",
"deploy:functions": "firebase deploy --only functions",
"deploy": "npm run build && npm run prepare-deploy && npm run deploy:functions && npm run deploy:hosting",
"deploy:optimized": "npm run build && npm run prepare-deploy && npm run cleanup && npm run deploy:functions && npm run deploy:hosting",
"cleanup": "node scripts/cleanup-images.js"
},
"dependencies": {
"@google-cloud/secret-manager": "^6.1.0",
"@toast-ui/react-editor": "^3.2.3",
"axios": "^1.11.0",
"cheerio": "^1.1.2",
"critters": "^0.0.23",
"dotenv": "^17.2.1",
"firebase": "^12.0.0",
"firebase-admin": "^12.0.0",
"firebase-functions": "^5.0.0",
"fs-extra": "^11.2.0",
"next": "^14.2.32",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"rss-parser": "^3.13.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"cross-env": "^7.0.3",
"eslint": "^9",
"eslint-config-next": "15.4.3",
"tailwindcss": "^4",
"typescript": "^5"
}
}