12345678910111213141516171819202122232425 |
- {
- "name": "nextjs-node",
- "description": "nextjs node",
- "version": "1.1.0",
- "private": true,
- "scripts": {
- "dev": "next dev",
- "build": "next build",
- "start": "next start",
- "lint": "next lint",
- "prettier": "prettier --write .",
- "prepare": "husky install",
- "storybook": "start-storybook -p 6006",
- "build-storybook": "build-storybook"
- },
- "dependencies": {
- "next": "12.1.5",
- "react": "18.0.0",
- "react-dom": "18.0.0"
- },
- "devDependencies": {
- "eslint": "8.13.0",
- "eslint-config-next": "12.1.5"
- }
- }
|