1
0
Fork 0
hackaton_2023/package.json

66 lines
1.9 KiB
JSON

{
"name": "hackaton_2023",
"type": "module",
"version": "0.0.1",
"description": "",
"scripts": {
"db:sample": "npx json-server --watch -q --port 4000 --ro ./db.sample.json",
"db": "npx json-server --watch -q --port 4000 ./db.json",
"dev": "npx remix dev --manual ",
"build": "npx remix build",
"start": "npx remix-serve ./build/index.js",
"lint": "npx eslint --fix .",
"typecheck": "npx tsc"
},
"repository": {
"type": "git",
"url": "https://git.disroot.org/minicx/hackaton_2023.git"
},
"engines": {
"node": "^18"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@remix-run/dev": "^2.4.1",
"@types/bcrypt": "^5.0.2",
"@types/eslint": "^8.56.0",
"@types/lodash": "^4.14.202",
"@types/node": "^18.19.3",
"@types/react": "^18.2.45",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-unicorn": "github:sindresorhus/eslint-plugin-unicorn",
"lodash": "^4.17.21",
"prettier": "3.1.1",
"tailwindcss": "^3.4.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@nextui-org/react": "^2.2.9",
"@reduxjs/toolkit": "^2.0.1",
"@remix-run/node": "^2.4.1",
"@remix-run/react": "^2.4.1",
"@remix-run/serve": "^2.4.1",
"bcrypt": "^5.1.1",
"framer-motion": "^10.16.16",
"isbot": "^3.7.1",
"json-server": "^0.17.4",
"node-fetch": "^3.3.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^9.0.4",
"redux": "^5.0.1",
"remix-auth": "^3.6.0",
"remix-auth-form": "^1.4.0"
}
}