AnoPaper/package.json

57 lines
1.5 KiB
JSON
Raw Normal View History

2022-10-17 13:50:40 +03:00
{
"name": "anopaper",
"private": true,
2023-04-02 10:53:32 +03:00
"version": "1.0.0",
"author": "anopaper",
2023-04-20 18:39:24 +03:00
"license": "GPL-3.0-only",
2022-10-17 13:50:40 +03:00
"scripts": {
"dev": "vite",
"build": "vite build --emptyOutDir",
2023-04-02 10:53:32 +03:00
"preview": "vite preview",
"start": "node index",
"bstart": "npm run build && npm run start"
2022-10-17 13:50:40 +03:00
},
"dependencies": {
"@heroicons/react": "^2.0.18",
2023-04-02 17:21:24 +03:00
"ajv": "^8.11.0",
"body-parser": "^1.20.1",
"crypto-js": "^4.1.1",
"dotenv": "^16.3.1",
2023-04-02 17:21:24 +03:00
"express": "^4.18.2",
"express-rate-limit": "^6.7.1",
2023-04-05 20:10:05 +03:00
"fuse.js": "^6.6.2",
2023-04-02 17:21:24 +03:00
"js-sha3": "^0.8.0",
"mongodb": "^5.5.0",
2023-04-04 16:50:11 +03:00
"openai": "^3.2.1",
2022-10-17 13:50:40 +03:00
"react": "^18.2.0",
2023-04-03 15:23:41 +03:00
"react-contenteditable": "^3.3.7",
2022-10-17 13:50:40 +03:00
"react-dom": "^18.2.0",
"react-markdown": "^8.0.7",
"react-router-dom": "^6.14.1",
2023-04-02 09:54:03 +03:00
"react-syntax-highlighter": "^15.5.0",
2023-04-01 20:57:46 +03:00
"rehype-mathjax": "^4.0.2",
2023-04-03 15:23:41 +03:00
"rehype-parse": "^8.0.4",
"rehype-remark": "^9.1.2",
2023-04-02 17:21:24 +03:00
"remark-gfm": "^3.0.1",
2023-04-03 14:07:47 +03:00
"remark-math": "^5.1.1",
"remark-stringify": "^10.0.3",
2023-04-07 13:13:20 +03:00
"remove-markdown": "^0.5.0",
2023-04-03 14:07:47 +03:00
"socket.io": "^4.6.1",
2023-04-03 15:23:41 +03:00
"socket.io-client": "^4.6.1",
"unified": "^10.1.2"
2022-10-17 13:50:40 +03:00
},
"devDependencies": {
Update versions (#31) * build(deps-dev): bump @types/react from 18.2.6 to 18.2.7 (#27) Bumps [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) from 18.2.6 to 18.2.7. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) --- updated-dependencies: - dependency-name: "@types/react" dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * build(deps-dev): bump vite from 4.3.8 to 4.3.9 (#29) Bumps [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) from 4.3.8 to 4.3.9. - [Release notes](https://github.com/vitejs/vite/releases) - [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md) - [Commits](https://github.com/vitejs/vite/commits/v4.3.9/packages/vite) --- updated-dependencies: - dependency-name: vite dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * build(deps-dev): bump postcss from 8.4.23 to 8.4.24 (#28) Bumps [postcss](https://github.com/postcss/postcss) from 8.4.23 to 8.4.24. - [Release notes](https://github.com/postcss/postcss/releases) - [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md) - [Commits](https://github.com/postcss/postcss/compare/8.4.23...8.4.24) --- updated-dependencies: - dependency-name: postcss dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-05-30 13:01:02 +03:00
"@types/react": "^18.2.7",
"@types/react-dom": "^18.2.4",
2023-04-22 11:29:52 +03:00
"@vitejs/plugin-react": "^4.0.0-beta.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.41.0",
2023-04-22 11:29:52 +03:00
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.1",
"postcss": "^8.4.25",
"tailwindcss": "^3.3.2",
"vite": "^4.4.2"
2022-10-17 13:50:40 +03:00
}
}