-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 996 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 996 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
33
{
"name": "mimo-proxy",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "node dist/index.js",
"dev": "tsx watch src/index.ts",
"build:css": "npx @tailwindcss/cli -i src/web/input.css -o src/web/style.css --minify",
"build:assets": "cp node_modules/chart.js/dist/chart.umd.min.js src/web/chart.js",
"build:ts": "tsc",
"build:web": "cp -r src/web dist/web",
"build": "npm run build:css && npm run build:assets && npm run build:ts && npm run build:web",
"dev:css": "npx @tailwindcss/cli -i src/web/input.css -o src/web/style.css --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"@hono/node-server": "^2.0.3",
"hono": "^4.12.9"
},
"devDependencies": {
"@tailwindcss/cli": "^4.2.2",
"@types/node": "^25.5.0",
"@types/ws": "^8.18.1",
"chart.js": "^4.5.1",
"tailwindcss": "^4.2.2",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
}
}