-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.07 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
{
"name": "blog.osb.im",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build && mkdir pages && mv ./src/pages/posts ./pages/posts",
"start": "next start",
"lint": "next lint",
"build:local": "next build",
"build:standalone": "next build && cp -r public .next/standalone/ && cp -r .next/static .next/standalone/.next/",
"start:standalone": "node .next/standalone/server.js",
"merge": "git checkout main && git merge dev && git push origin main && git checkout dev"
},
"dependencies": {
"@next/third-parties": "^14.2.14",
"axios": "^1.7.8",
"next": "14.2.3",
"nextra": "^3.3.1",
"nextra-theme-docs": "^3.3.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-lottie-player": "^2.1.0",
"sharp": "^0.33.4",
"zustand": "^5.0.2"
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"typescript": "^5.4.5"
}
}