Files
full-stack-archetype/front/package.json

42 lines
1.2 KiB
JSON

{
"name": "front-next-archetype",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev -p 3016",
"build": "next build",
"start": "next start -p 3016",
"lint": "next lint",
"test:load": "loadtest -c 10 --rps 200 http://localhost:3016",
"test": "jest",
"test:watch": "jest --watch"
},
"dependencies": {
"next": "14.2.3",
"next-auth": "^4.24.7",
"postcss": "^8.4.39",
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/jest": "^30.0.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.3",
"eslint-config-prettier": "^9.1.0",
"jest": "^30.0.4",
"jest-environment-jsdom": "^30.0.4",
"lint-staged": "^15.2.10",
"loadtest": "^8.2.0",
"prettier": "3.3.3",
"sass": "^1.77.8",
"ts-node": "^10.9.2",
"typescript": "^5"
}
}