-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.87 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.87 KB
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
{
"name": "web",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build --turbopack",
"start": "next start",
"lint": "eslint",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"dev:ws": "ts-node ./server/ws.ts",
"dev:full": "concurrently \"npm run dev\" \"npm run dev:ws\"",
"db:start": "./scripts/mongodb.sh start",
"db:stop": "./scripts/mongodb.sh stop",
"db:status": "./scripts/mongodb.sh status",
"db:connect": "./scripts/mongodb.sh connect",
"seed": "TS_NODE_COMPILER_OPTIONS=\"{\\\"module\\\":\\\"commonjs\\\",\\\"moduleResolution\\\":\\\"node\\\"}\" ts-node --transpile-only ./scripts/seed.ts"
},
"dependencies": {
"@faker-js/faker": "^10.0.0",
"@humeai/voice-react": "^0.2.3",
"@types/ws": "^8.18.1",
"geolib": "^3.3.4",
"hume": "^0.13.6",
"isomorphic-ws": "^5.0.0",
"leaflet": "^1.9.4",
"lottie-web": "^5.13.0",
"mongoose": "^8.18.1",
"next": "15.5.3",
"openai": "^5.22.0",
"plotly.js": "^3.1.0",
"react": "19.1.0",
"react-dom": "19.1.0",
"react-leaflet": "^5.0.0",
"react-plotly.js": "^2.6.0",
"ws": "^8.18.3",
"zod": "^3.25.76",
"zustand": "^5.0.8"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.9.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/react-plotly.js": "^2.6.3",
"concurrently": "^9.2.1",
"dotenv": "^17.2.2",
"eslint": "^9",
"eslint-config-next": "15.5.3",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"prettier": "^3.6.2",
"tailwindcss": "^4",
"ts-node": "^10.9.2",
"typescript": "^5"
}
}