-
-
Notifications
You must be signed in to change notification settings - Fork 54
/
package.json
53 lines (53 loc) · 1.54 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
47
48
49
50
51
52
53
{
"name": "nextjs-wordpress",
"version": "2.0.0",
"description": "💀 It's headless WordPress!",
"private": true,
"repository": {
"type": "git",
"url": "git+https://github.com/gregrickaby/nextjs-wordpress.git"
},
"author": "Greg Rickaby <greg@gregrickaby.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gregrickaby/nextjs-wordpress/issues"
},
"homepage": "https://github.com/gregrickaby/nextjs-wordpress#readme",
"scripts": {
"build": "next build",
"clean": "rimraf .next",
"dev": "npm run clean && next dev",
"format": "prettier '**/*.{js,jsx,ts,tsx,md,html,css,json,yml}' --ignore-path .gitignore --cache --write",
"info": "next info",
"lint": "next lint",
"start": "next start"
},
"dependencies": {
"next": "^15.0.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sharp": "^0.33.5",
"typescript": "^5.6.3",
"xml-escape": "^1.1.0"
},
"devDependencies": {
"@evilmartians/lefthook": "^1.8.1",
"@tailwindcss/typography": "^0.5.15",
"@types/node": "^22.8.1",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/xml-escape": "^1.1.3",
"autoprefixer": "^10.4.20",
"eslint": "^8.57.0",
"eslint-config-next": "^15.0.1",
"eslint-config-prettier": "^9.1.0",
"postcss": "^8.4.47",
"postcss-import": "^16.1.0",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"rimraf": "^6.0.1",
"stylelint": "^16.10.0",
"stylelint-config-standard": "^36.0.1",
"tailwindcss": "^3.4.14"
}
}