-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.53 KB
/
package.json
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
{
"name": "next-with-docker",
"version": "1.0.0",
"description": "Next.js with Docker example for EasyPanel",
"author": "Andrii Iv. <[email protected]> (@digitalandyeu)",
"license": "MIT",
"homepage": "https://github.com/digitalandyeu/next-with-docker#readme",
"engines": {
"node": ">=18.20.4"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/digitalandyeu/next-with-docker.git"
},
"readme": "https://gist.github.com/andriilive/38e0c30ad0e68e01d0bfc5250998de50",
"scripts": {
"dev": "next dev",
"build": "next build",
"postbuild": "npm-run-all -s generate:* export:*",
"start": "node ./.next/standalone/server.js",
"lint": "next lint",
"clean": "[[ -d ./.next ]] && rm -rf ./.next || echo \".next directory not found\"",
"generate:sitemap": "next-sitemap",
"export:public": "[[ -d ./public ]] && cp -r ./public ./.next/standalone || echo \"public directory not found\"",
"export:static": "[[ -d ./.next/static ]] && cp -r ./.next/static ./.next/standalone/.next || echo \".next/static directory not found\"",
"preview": "npm-run-all -s build start"
},
"dependencies": {
"next": "14.2.13",
"next-sitemap": "^4.2.3",
"postcss": "^8.4.47",
"react": "^18",
"react-dom": "^18",
"sharp": "^0.33.5",
"tailwindcss": "^3.4.12"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.13",
"npm-run-all": "^4.1.5",
"typescript": "^5"
}
}