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.12",
2023-04-02 17:21:24 +03:00
"ajv": "^8.11.0",
"body-parser": "^1.20.1",
"crypto-js": "^4.1.1",
"dotenv": "^16.0.3",
"express": "^4.18.2",
2023-04-19 18:06:50 +03:00
"express-rate-limit": "^6.7.0",
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.3.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",
2022-10-17 14:58:38 +03:00
"react-markdown": "^8.0.3",
2023-04-01 20:57:46 +03:00
"react-router-dom": "^6.4.2",
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",
2023-04-03 15:23:41 +03:00
"remark-stringify": "^10.0.2",
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": {
2023-04-22 11:29:52 +03:00
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@vitejs/plugin-react": "^4.0.0-beta.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.38.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"postcss": "^8.4.23",
"tailwindcss": "^3.3.1",
"vite": "^4.3.0"
2022-10-17 13:50:40 +03:00
}
}