47 lines
1.4 KiB
JSON
47 lines
1.4 KiB
JSON
{
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"build:start": "pnpm run build && pnpm run start",
|
|
"lint:js": "next lint --ignore-path .eslintignore .",
|
|
"lint:prettier": "prettier --ignore-path .eslintignore .",
|
|
"lint": "pnpm run lint:js && pnpm run lint:prettier -- --check",
|
|
"lint:fix": "pnpm run lint:js -- --fix && pnpm run lint:prettier -- --write --list-different"
|
|
},
|
|
"dependencies": {
|
|
"next": "latest",
|
|
"next-plugin-preact": "^3.0.6",
|
|
"next-pwa": "^5.4.1",
|
|
"preact": "^10.7.0",
|
|
"preact-render-to-string": "^5.1.20",
|
|
"react": "npm:@preact/compat@^17.0.2",
|
|
"react-dom": "npm:@preact/compat@^17.0.2",
|
|
"react-ssr-prepass": "npm:preact-ssr-prepass@^1.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": ">=7.0.0 <8.0.0",
|
|
"@prefresh/babel-plugin": "^0.4.0",
|
|
"@types/node": "17.0.4",
|
|
"@types/react": "17.0.38",
|
|
"autoprefixer": "^10.4.4",
|
|
"cssnano": "^5.1.7",
|
|
"eslint": "^8.12.0",
|
|
"eslint-config-next": "^12.1.4",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"postcss": "^8.4.12",
|
|
"postcss-import": "^14.1.0",
|
|
"prettier": "^2.6.1",
|
|
"prettier-plugin-tailwindcss": "^0.1.8",
|
|
"tailwindcss": "^3.0.23",
|
|
"typescript": "4.5.4",
|
|
"webpack": ">=5.9.0 <6.0.0"
|
|
},
|
|
"peerDependencies": {
|
|
"@babel/core": ">=7.0.0 <8.0.0",
|
|
"@prefresh/babel-plugin": "^0.4.0",
|
|
"webpack": ">=5.9.0 <6.0.0"
|
|
}
|
|
}
|