shortlink/package.json

29 lines
588 B
JSON
Raw Permalink Normal View History

2024-06-02 01:02:14 +07:00
{
"name": "shortlink",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
2024-06-02 05:25:58 +07:00
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"next": "14.2.3",
2024-06-02 01:02:14 +07:00
"react": "^18",
2024-06-02 05:25:58 +07:00
"react-dom": "^18"
2024-06-02 01:02:14 +07:00
},
"devDependencies": {
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
2024-06-02 05:25:58 +07:00
"eslint": "^8",
"eslint-config-next": "14.2.3",
2024-06-02 01:02:14 +07:00
"postcss": "^8",
"tailwindcss": "^3.4.1",
2024-06-02 05:25:58 +07:00
"typescript": "^5"
2024-06-02 01:02:14 +07:00
}
}