2022-01-07 12:09:22 +01:00
|
|
|
{
|
2022-02-07 13:07:44 +01:00
|
|
|
"name": "web-drs-frontent",
|
|
|
|
"version": "1.0.0",
|
|
|
|
"description": "Frontend for a non-persistent chat",
|
|
|
|
"homepage": "https://home.tobot.dev/toby/web-drs-frontend/",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://home.tobot.dev/toby/web-drs-frontend/issues",
|
|
|
|
"email": "tobi.berger13@gmail.com"
|
|
|
|
},
|
|
|
|
"license": "Unlicense",
|
|
|
|
"author": {
|
|
|
|
"name": "Tobias Berger",
|
|
|
|
"email": "tobi.berger13@gmail.com",
|
|
|
|
"url": "https://tobot.dev/"
|
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/Toby222/web-drs-frontend.git"
|
|
|
|
},
|
2022-01-07 12:09:22 +01:00
|
|
|
"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": {
|
2022-02-07 10:47:29 +01:00
|
|
|
"@types/react": "^17.0.39",
|
2022-02-22 10:45:37 +01:00
|
|
|
"next": "^12.1.0",
|
2022-01-28 12:05:32 +01:00
|
|
|
"preact": "^10.6.5",
|
2022-02-07 10:47:29 +01:00
|
|
|
"react-use-websocket": "^3.0.0",
|
|
|
|
"sass": "^1.49.7",
|
2022-01-27 11:25:14 +01:00
|
|
|
"typescript": "^4.5.5"
|
2022-01-07 12:09:22 +01:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-02-07 10:47:29 +01:00
|
|
|
"@types/node": "^17.0.15",
|
2022-01-07 12:09:22 +01:00
|
|
|
"@types/react-dom": "^17.0.8",
|
2022-02-07 10:47:29 +01:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.10.2",
|
|
|
|
"@typescript-eslint/parser": "^5.10.2",
|
|
|
|
"eslint": "^8.8.0",
|
|
|
|
"eslint-config-next": "^12.0.10",
|
2022-01-07 12:09:22 +01:00
|
|
|
"eslint-config-prettier": "^8.3.0",
|
|
|
|
"eslint-plugin-import": "^2.23.4",
|
|
|
|
"eslint-plugin-jsx-a11y": "^6.4.1",
|
2022-01-07 19:22:43 +01:00
|
|
|
"eslint-plugin-prettier": "^4.0.0",
|
2022-01-07 12:09:22 +01:00
|
|
|
"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",
|
2022-01-07 19:02:56 +01:00
|
|
|
"react-dom": "^17.0.2"
|
2022-01-07 12:09:22 +01:00
|
|
|
},
|
2022-02-07 13:07:44 +01:00
|
|
|
"private": true,
|
|
|
|
"pre-commit": "test"
|
2022-01-07 12:09:22 +01:00
|
|
|
}
|