-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.78 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "mellifera-app",
"version": "1.0.0",
"description": "<!-- Improved compatibility of back to top link: See: https://github.com/othneildrew/Best-README-Template/pull/73 -->\r <a id=\"readme-top\"></a>",
"engines": {
"npm": ">=10.0.0 <11.0.0",
"node": ">=18.0.0 <19.0.0"
},
"main": "server.js",
"scripts": {
"start": "node server/index.js",
"dev": "concurrently \"npm run dev:client\" \"npm run dev:server\"",
"dev:client": "vite",
"dev:server": "nodemon server/index.js",
"build": "vite build",
"preview": "vite preview",
"test": "cross-env NODE_OPTIONS=--max-old-space-size=4096 jest",
"test:watch": "cross-env NODE_OPTIONS=--max-old-space-size=4096 jest --watch",
"lint": "eslint . --debug --format stylish",
"lint:fix": "eslint . --fix --debug --format stylish",
"format": "prettier --write .",
"docker:build": "docker build -t mellifera-app .",
"docker:run": "docker run -p 3000:3000 -p 5000:5000 mellifera-app"
},
"author": "",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-dynamodb": "^3.0.0",
"@aws-sdk/client-polly": "^3.645.0",
"@aws-sdk/client-s3": "^3.0.0",
"@aws-sdk/lib-dynamodb": "^3.0.0",
"@tanstack/react-query": "^5.52.2",
"@tensorflow-models/universal-sentence-encoder": "^1.3.3",
"@tensorflow/tfjs": "^4.20.0",
"@tensorflow/tfjs-node": "^4.20.0",
"@types/react": "^18.3.4",
"@types/react-speech-recognition": "^3.9.5",
"axios": "^1.7.2",
"bcrypt": "^5.1.1",
"bcryptjs": "^2.4.3",
"chart.js": "^4.4.3",
"compromise": "^14.14.0",
"cors": "^2.8.5",
"dompurify": "^3.1.6",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-session": "^1.18.0",
"jsonwebtoken": "^9.0.2",
"leaflet": "^1.9.4",
"localforage": "^1.10.0",
"lodash": "^4.17.21",
"mongodb": "^6.8.0",
"mongoose": "^8.5.1",
"mongoose-findorcreate": "^4.0.0",
"natural": "^6.10.5",
"openai": "^4.60.1",
"passport": "^0.7.0",
"passport-facebook": "^3.0.0",
"passport-google-oauth2": "^0.2.0",
"passport-google-oauth20": "^2.0.0",
"passport-jwt": "^4.0.1",
"passport-local": "^1.0.0",
"react": "^18.3.1",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.3.1",
"react-intersection-observer": "^9.13.0",
"react-leaflet": "^4.2.1",
"react-router-dom": "^6.26.1",
"react-speech-recognition": "^3.10.0",
"react-toastify": "^10.0.5",
"regenerator-runtime": "^0.14.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"@babel/core": "^7.24.9",
"@babel/plugin-transform-runtime": "^7.24.7",
"@babel/preset-env": "^7.24.8",
"@babel/preset-react": "^7.24.7",
"@eslint/config-array": "^0.18.0",
"@tanstack/eslint-plugin-query": "^5.52.0",
"@tanstack/react-query-devtools": "^5.52.2",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.0",
"@types/dompurify": "^3.0.5",
"@vitejs/plugin-legacy": "^5.4.2",
"@vitejs/plugin-react": "^4.3.1",
"autoprefixer": "^10.4.20",
"concurrently": "^8.0.1",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"node-fetch": "^3.3.0",
"nodemon": "^3.0.1",
"postcss": "^8.4.41",
"prettier": "^3.3.3",
"rollup-plugin-visualizer": "^5.12.0",
"supertest": "^7.0.0",
"tailwindcss": "^3.4.10",
"typescript": "^5.5.4",
"vite": "^5.4.3",
"vite-plugin-compression": "^0.5.1",
"vite-plugin-html": "^3.2.2",
"vite-plugin-svgr": "^4.2.0"
}
}