You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.1 KiB
38 lines
1.1 KiB
3 years ago
|
{
|
||
|
"license": "MIT",
|
||
|
"scripts": {
|
||
|
"dev": "next dev",
|
||
|
"build": "next build",
|
||
|
"start": "next start",
|
||
|
"export": "next build && next export",
|
||
|
"test-build": "tsc",
|
||
|
"lint": "eslint src",
|
||
|
"stylelint": "npx stylelint **/*.scss",
|
||
|
"full-test": "yarn test-build && yarn lint && yarn stylelint"
|
||
|
},
|
||
|
"dependencies": {
|
||
|
"next": "^10.2.3",
|
||
|
"next-seo": "^4.24.0",
|
||
|
"react": "^17.0.2",
|
||
|
"react-dom": "^17.0.2"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"@types/node": "^15.12.1",
|
||
|
"@types/react": "^17.0.9",
|
||
|
"@types/react-dom": "^17.0.6",
|
||
|
"@typescript-eslint/eslint-plugin": "^4.26.0",
|
||
|
"@typescript-eslint/parser": "^4.26.0",
|
||
|
"eslint": "^7.28.0",
|
||
|
"eslint-plugin-css-modules": "^2.11.0",
|
||
|
"eslint-plugin-jsx-a11y": "^6.4.1",
|
||
|
"eslint-plugin-prettier": "^3.4.0",
|
||
|
"eslint-plugin-react": "^7.24.0",
|
||
|
"eslint-plugin-react-hooks": "^4.2.0",
|
||
|
"prettier": "^2.3.1",
|
||
|
"sass": "^1.34.1",
|
||
|
"stylelint": "^13.13.1",
|
||
|
"stylelint-config-idiomatic-order": "^8.1.0",
|
||
|
"stylelint-config-standard": "^22.0.0",
|
||
|
"typescript": "^4.3.2"
|
||
|
}
|
||
|
}
|