-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 846 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 846 Bytes
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
{
"name": "example-matrix-tool",
"version": "1.0.0",
"description": "Example app for Matrix chat integration tools",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npx tsc",
"start": "node dist/src/index.js",
"dev": "npm run build && npm start",
"dev-web": "vite web",
"build-web": "vite build web"
},
"author": "",
"license": "ISC",
"dependencies": {
"express": "^5.1.0",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"react-router": "^7.8.2",
"typescript": "^5.6.2",
"uuid": "^11.0.5",
"vite-plugin-singlefile": "^2.3.0"
},
"devDependencies": {
"@types/express": "^5.0.3",
"@types/node": "^22.7.4",
"@types/react": "^19.1.12",
"@types/react-dom": "^19.1.9",
"@vitejs/plugin-react-swc": "^4.0.1",
"vite": "^7.1.3"
}
}