Files
caszl-next/package.json

32 lines
731 B
JSON
Raw Normal View History

2023-10-27 09:30:22 +08:00
{
"name": "caszl-next",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
2023-10-27 17:29:50 +08:00
"lint": "next lint",
"format": "prettier --write \"app/**/*.{js,jsx,ts,tsx,json,md}\""
2023-10-27 09:30:22 +08:00
},
"dependencies": {
2023-10-27 17:29:50 +08:00
"axios": "^1.6.0",
"next": "14.0.0",
2023-10-29 22:25:16 +08:00
"react": "^18.2.0",
"react-dom": "^18.2.0"
2023-10-27 09:30:22 +08:00
},
"devDependencies": {
2023-10-29 22:25:16 +08:00
"@types/node": "^20.8.9",
"@types/react": "^18.2.33",
"@types/react-dom": "^18.2.14",
"autoprefixer": "^10.4.16",
"eslint": "^8.52.0",
2023-10-27 17:29:50 +08:00
"eslint-config-next": "14.0.0",
2023-10-29 22:25:16 +08:00
"postcss": "^8.4.31",
2023-10-27 17:29:50 +08:00
"prettier": "^3.0.3",
"sass": "^1.69.5",
2023-10-29 22:25:16 +08:00
"tailwindcss": "^3.3.5",
"typescript": "^5.2.2"
2023-10-27 09:30:22 +08:00
}
}