-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.16 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.16 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
{
"name": "mentraos-react-example-app",
"version": "1.0.0",
"description": "Example app demonstrating MentaOS React authentication and live transcriptions",
"type": "module",
"scripts": {
"dev": "concurrently \"bun run dev:backend\" \"bun run dev:frontend\"",
"dev:backend": "bun --watch src/index.ts",
"dev:frontend": "vite",
"build": "vite build",
"build:prod": "bun install --production && vite build",
"preview": "vite preview",
"start": "bun run src/index.ts",
"start:prod": "NODE_ENV=production bun run src/index.ts"
},
"engines": {
"bun": ">=1.0.0"
},
"dependencies": {
"@mentra/react": "^2.0.2",
"@mentra/sdk": "^2.0.3",
"express": "^4.18.2",
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.1.10",
"@types/express": "^4.17.17",
"@types/node": "^20.0.0",
"@types/react": "^19.1.6",
"@types/react-dom": "^19.1.0",
"@vitejs/plugin-react": "^4.0.0",
"autoprefixer": "^10.4.21",
"concurrently": "^8.2.0",
"postcss": "^8.4.24",
"tailwindcss": "^4.0.0-alpha.2",
"typescript": "^5.0.0",
"vite": "^5.0.0"
}
}