39 lines
989 B
JSON
39 lines
989 B
JSON
{
|
|
"name": "aoe-next-techradar",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev --turbo",
|
|
"build:icons": "npx @svgr/cli --typescript --no-prettier --out-dir src/components/Icons -- src/icons",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "next lint",
|
|
"fix": "prettier . --write",
|
|
"prepare": "husky",
|
|
"postinstall": "npm run build:icons"
|
|
},
|
|
"dependencies": {
|
|
"clsx": "^2.1.0",
|
|
"next": "14.1.0",
|
|
"postcss-nested": "^6.0.1",
|
|
"postcss-preset-env": "^9.3.0",
|
|
"react": "^18",
|
|
"react-dom": "^18"
|
|
},
|
|
"devDependencies": {
|
|
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
|
|
"@types/node": "^20",
|
|
"@types/react": "^18",
|
|
"@types/react-dom": "^18",
|
|
"eslint": "^8",
|
|
"eslint-config-next": "14.1.0",
|
|
"husky": "^9.0.10",
|
|
"lint-staged": "^15.2.2",
|
|
"prettier": "^3.2.5",
|
|
"typescript": "^5"
|
|
},
|
|
"lint-staged": {
|
|
"**/*": "prettier --write --ignore-unknown"
|
|
}
|
|
}
|