From d1c9a32458f247959e3cbe939c79fe470d408847 Mon Sep 17 00:00:00 2001 From: karishmas6 Date: Wed, 12 Jun 2024 01:28:53 +0530 Subject: [PATCH] chore(deps): install joi --- package.json | 88 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 88 insertions(+) create mode 100644 package.json diff --git a/package.json b/package.json new file mode 100644 index 00000000..5a901005 --- /dev/null +++ b/package.json @@ -0,0 +1,88 @@ +{ + "name": "maxun", + "version": "0.1.0", + "author": "Karishma Shukla", + "license": "", + "dependencies": { + "@emotion/react": "^11.9.0", + "@emotion/styled": "^11.8.1", + "@mui/icons-material": "^5.5.1", + "@mui/lab": "^5.0.0-alpha.80", + "@mui/material": "^5.6.2", + "@testing-library/jest-dom": "^5.16.4", + "@testing-library/react": "^13.1.1", + "@testing-library/user-event": "^13.5.0", + "@types/jest": "^27.4.1", + "@types/node": "^16.11.27", + "@types/react": "^18.0.5", + "@types/react-dom": "^18.0.1", + "@types/uuid": "^8.3.4", + "@wbr-project/wbr-interpret": "^0.9.3-marketa.1", + "axios": "^0.26.0", + "buffer": "^6.0.3", + "cors": "^2.8.5", + "dotenv": "^16.0.0", + "express": "^4.17.2", + "fortawesome": "^0.0.1-security", + "joi": "^17.6.0", + "loglevel": "^1.8.0", + "loglevel-plugin-remote": "^0.6.8", + "playwright": "^1.18.1", + "prismjs": "^1.28.0", + "react": "^18.0.0", + "react-dom": "^18.0.0", + "react-highlight": "^0.14.0", + "react-scripts": "5.0.1", + "react-simple-code-editor": "^0.11.2", + "react-transition-group": "^4.4.2", + "socket.io": "^4.4.1", + "socket.io-client": "^4.4.1", + "styled-components": "^5.3.3", + "typedoc": "^0.23.8", + "typescript": "^4.6.3", + "uuid": "^8.3.2", + "uuidv4": "^6.2.12", + "web-vitals": "^2.1.4", + "winston": "^3.5.1" + }, + "scripts": { + "start": "concurrently -k \"npm run server\" \"npm run client\"", + "server": "./node_modules/.bin/nodemon server/src/server.ts", + "client": "react-app-rewired start", + "build": "react-app-rewired build", + "test": "react-app-rewired test", + "eject": "react-scripts eject", + "lint": "./node_modules/.bin/eslint ." + }, + "eslintConfig": { + "extends": [ + "react-app", + "react-app/jest" + ] + }, + "browserslist": { + "production": [ + ">0.2%", + "not dead", + "not op_mini all" + ], + "development": [ + "last 1 chrome version", + "last 1 firefox version", + "last 1 safari version" + ] + }, + "devDependencies": { + "@types/express": "^4.17.13", + "@types/loglevel": "^1.6.3", + "@types/node": "^17.0.15", + "@types/prismjs": "^1.26.0", + "@types/react-highlight": "^0.12.5", + "@types/react-transition-group": "^4.4.4", + "@types/styled-components": "^5.1.23", + "concurrently": "^7.0.0", + "nodemon": "^2.0.15", + "react-app-rewired": "^2.2.1", + "ts-node": "^10.4.0" + } +}