forked from gregrickaby/nextjs-wordpress
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.34 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.34 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"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": "npm run codegen && next build",
"codegen": "graphql-codegen --config codegen.ts",
"dev": "npm run codegen && rimraf .next && next dev",
"format": "eslint --fix && prettier '**/*.{js,jsx,ts,tsx,md,html,css,json,yml}' --ignore-path .gitignore --cache --write",
"lint": "eslint .",
"sonar": "bash ./scripts/sonar-analysis.sh",
"start": "next start",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"test:watch": "vitest",
"typecheck": "npx tsc --noEmit",
"validate": "npm run format && npm run lint && npm run typecheck && npm run test"
},
"dependencies": {
"next": "^16.0.7",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"xml-escape": "^1.1.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^6.1.0",
"@graphql-codegen/typescript": "^5.0.6",
"@graphql-codegen/typescript-operations": "^5.0.6",
"@tailwindcss/postcss": "^4.1.17",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/jest-axe": "^3.5.9",
"@types/node": "^24.10.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@types/xml-escape": "^1.1.3",
"@vitejs/plugin-react-swc": "^4.2.2",
"@vitest/coverage-v8": "^4.0.14",
"@vitest/ui": "^4.0.14",
"autoprefixer": "^10.4.22",
"babel-plugin-react-compiler": "^1.0.0",
"dotenv": "^17.2.3",
"eslint": "^9.39.1",
"eslint-config-next": "^16.0.6",
"eslint-config-prettier": "^10.1.8",
"jest-axe": "^10.0.0",
"jsdom": "^27.2.0",
"lefthook": "^2.0.4",
"msw": "^2.12.3",
"postcss": "^8.5.6",
"postcss-import": "^16.1.1",
"prettier": "^3.7.3",
"prettier-plugin-tailwindcss": "^0.7.2",
"rimraf": "^6.1.2",
"tailwindcss": "^4.1.17",
"typescript": "^5.9.3",
"vitest": "^4.0.14"
}
}