1
Fork 0
This repository has been archived on 2022-08-23. You can view files and clone it, but cannot push or open issues or pull requests.
web-drs-frontend/package.json
2022-01-28 11:05:32 +00:00

48 lines
1.5 KiB
JSON

{
"name": "vite-preact-ts-eslint-prettier",
"version": "0.0.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"prod": "yarn build && yarn start",
"type-check": "tsc",
"lint:eslint": "eslint **/*.{ts,tsx}",
"lint:prettier": "prettier . --check",
"lint": "yarn lint:eslint && yarn lint:prettier",
"fix:eslint": "yarn lint:eslint --fix",
"fix:prettier": "prettier . --write",
"fix": "yarn fix:eslint && yarn fix:prettier",
"test:eslint": "yarn lint:eslint --max-warnings=0",
"test:prettier": "yarn lint:prettier",
"test": "yarn type-check && yarn test:eslint && yarn test:prettier"
},
"dependencies": {
"@types/react": "^17.0.13",
"next": "^12.0.9",
"preact": "^10.6.5",
"react-use-websocket": "^2.9.1",
"sass": "^1.49.0",
"typescript": "^4.5.5"
},
"devDependencies": {
"@types/node": "^17.0.13",
"@types/react-dom": "^17.0.8",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"eslint": "^8.7.0",
"eslint-config-next": "^12.0.9",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"pre-commit": "^1.2.2",
"prettier": "^2.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"pre-commit": "test",
"license": "MIT"
}