-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.12 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.12 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
{
"name": "nextjs-template",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && next-image-export-optimizer",
"start": "next start",
"lint": "next lint",
"build:staging": "pnpm i && (cross-env APP_ENV=staging pnpm build)",
"build:production": "pnpm i && (cross-env APP_ENV=production pnpm build)",
"deploy:staging": "firebase -P staging deploy --only hosting:web-stage",
"deploy:production": "firebase -P production deploy --only hosting:web-prod",
"emulate": "firebase emulators:start --only hosting"
},
"dependencies": {
"@lottiefiles/react-lottie-player": "^3.5.4",
"@zajno/common": "^2.3.12",
"@zajno/common-web": "^1.0.5",
"gsap": "npm:@gsap/shockingly",
"next": "14.2.4",
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@zajno/eslint-config": "^3.0.2",
"cross-env": "^7.0.3",
"eslint": "^8",
"eslint-config-next": "14.2.4",
"git-rev-sync": "^3.0.2",
"sass": "^1.77.6",
"typescript": "^5"
}
}