Files
Next-Template-App-Router/package.json
Jan-Marlon Leibl 542aaf9c6f
All checks were successful
CI/CD Pipeline / Quick Checks (push) Successful in 1m8s
CI/CD Pipeline / ESLint (push) Successful in 12s
CI/CD Pipeline / Test & Coverage (push) Successful in 14s
CI/CD Pipeline / Build Application (push) Successful in 28s
Merge pull request 'chore(deps): update dependency next to v15.3.3' (#15) from renovate/next-15.x into main
Reviewed-on: #15
2025-06-01 17:58:57 +00:00

69 lines
2.0 KiB
JSON

{
"name": "next-template-app-router",
"version": "0.1.0",
"private": false,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"type-check": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --ci --coverage --watchAll=false --maxWorkers=2",
"test:fast": "jest --watchAll=false --maxWorkers=50%",
"test:coverage": "jest --coverage --watchAll=false",
"ci:all": "bun run type-check && bun run lint && bun run test:ci && bun run build",
"prepare": "husky"
},
"dependencies": {
"react": "^19.0.0",
"react-dom": "^19.0.0",
"next": "15.3.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@types/jest": "^29.5.12",
"@types/node": "^22.0.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"@typescript-eslint/eslint-plugin": "^8.32.1",
"@typescript-eslint/parser": "^8.32.1",
"audit-ci": "^7.1.0",
"eslint": "^9",
"eslint-config-next": "15.3.3",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest-dom": "^5.4.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-testing-library": "^7.0.0",
"eslint-plugin-react-hooks": "^5.0.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^16.0.0",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"tailwindcss": "^4",
"typescript": "^5"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"**/*.{json,css,md}": [
"prettier --write"
]
}
}