63 lines
1.3 KiB
JSON
63 lines
1.3 KiB
JSON
{
|
|
"name": "smart-energia-web",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "next lint"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": [
|
|
"react-app",
|
|
"react-app/jest",
|
|
"prettier",
|
|
"prettier/react"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"@emotion/react": "^11.9.0",
|
|
"@emotion/styled": "^11.8.1",
|
|
"@mui/material": "^5.6.4",
|
|
"@typescript-eslint/eslint-plugin": "^5.22.0",
|
|
"@typescript-eslint/parser": "^5.22.0",
|
|
"chart.js": "^3.7.1",
|
|
"eslint-plugin-react": "^7.29.4",
|
|
"eslit": "^6.0.0",
|
|
"next": "12.1.6",
|
|
"react": "18.1.0",
|
|
"react-chartjs-2": "^4.1.0",
|
|
"react-dom": "18.1.0",
|
|
"styled-components": "^5.3.5"
|
|
},
|
|
"devDependencies": {
|
|
"@types/chartjs": "^0.0.31",
|
|
"@types/node": "^17.0.31",
|
|
"@types/react": "^18.0.8",
|
|
"@types/styled-components": "^5.1.25",
|
|
"eslint": "8.14.0",
|
|
"eslint-config-next": "12.1.6",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"husky": "^7.0.4",
|
|
"lint-staged": "^12.4.1",
|
|
"prettier": "^2.6.2",
|
|
"typescript": "^4.6.4"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"*.ts": [
|
|
"eslint",
|
|
"prettier --write"
|
|
],
|
|
"*.tsx": [
|
|
"eslint",
|
|
"prettier --write"
|
|
]
|
|
}
|
|
}
|