-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 766 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 766 Bytes
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
{
"name": "ghost-cms-nextjs",
"version": "2.0.0",
"private": true,
"scripts": {
"dev": "next dev --turbo",
"build": "next build",
"start": "next start",
"lint": "eslint ."
},
"dependencies": {
"@tryghost/content-api": "^1.12.3",
"@types/node": "^25.0.10",
"@types/react": "^19.2.9",
"@types/react-dom": "^19.2.3",
"next": "^16.1.5",
"react": "^19.2.4",
"react-dom": "^19.2.3",
"typescript": "^5.9.3"
},
"devDependencies": {
"@next/eslint-plugin-next": "^16.1.6",
"@types/tryghost__content-api": "^1.3.17",
"@typescript-eslint/eslint-plugin": "^8.53.1",
"@typescript-eslint/parser": "^8.54.0",
"eslint": "^9.39.2",
"eslint-config-next": "^16.1.5",
"globals": "^17.1.0"
}
}