anything-llm/embedded-app/package.json

35 lines
999 B
JSON
Raw Normal View History

2024-01-25 02:20:26 +01:00
{
"name": "embedded-app",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "nodemon -e js,jsx,css --watch src --exec \"yarn run dev:preview\"",
"dev:preview": "yarn run build && yarn serve . -p 3080 --no-clipboard",
2024-01-25 02:20:26 +01:00
"build": "vite build",
"lint": "yarn prettier --write ./src"
2024-01-25 02:20:26 +01:00
},
"dependencies": {
"@microsoft/fetch-event-source": "^2.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"uuid": "^9.0.1"
2024-01-25 02:20:26 +01:00
},
"devDependencies": {
"@rollup/plugin-image": "^3.0.3",
2024-01-25 02:20:26 +01:00
"@types/react": "^18.2.37",
"@types/react-dom": "^18.2.15",
"@vitejs/plugin-react": "^4.2.0",
"autoprefixer": "^10.4.14",
"globals": "^13.21.0",
2024-01-25 02:20:26 +01:00
"eslint": "^8.53.0",
"serve": "^14.2.1",
"prettier": "^3.0.3",
2024-01-25 02:20:26 +01:00
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.4",
"nodemon": "^2.0.22",
"vite": "^5.0.0",
"vite-plugin-singlefile": "^0.13.5"
2024-01-25 02:20:26 +01:00
}
}