-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.24 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.24 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
{
"name": "rsscloud-tester",
"version": "1.0.5",
"type": "module",
"scripts": {
"dev": "concurrently -k -n server,css -c blue,magenta \"npm:dev:server\" \"npm:dev:css\"",
"dev:server": "tsx watch --env-file=.env src/index.tsx",
"dev:css": "tailwindcss -i src/styles/input.css -o public/styles.css --watch",
"build": "tsc && tailwindcss -i src/styles/input.css -o public/styles.css --minify",
"start": "node --env-file=.env dist/index.js",
"docker:build": "docker buildx build --platform linux/amd64,linux/arm64 -t ghcr.io/andrewshell/rsscloud-tester:latest -t ghcr.io/andrewshell/rsscloud-tester:$(node -p \"require('./package.json').version\") .",
"docker:push": "docker buildx build --platform linux/amd64,linux/arm64 --push -t ghcr.io/andrewshell/rsscloud-tester:latest -t ghcr.io/andrewshell/rsscloud-tester:$(node -p \"require('./package.json').version\") ."
},
"dependencies": {
"@hono/node-server": "^1.13.8",
"fast-xml-parser": "^5.2.0",
"hono": "^4.7.6",
"ws": "^8.20.0"
},
"devDependencies": {
"@tailwindcss/cli": "^4.0.0",
"@types/node": "^22.14.1",
"@types/ws": "^8.18.1",
"concurrently": "^9.1.0",
"tailwindcss": "^4.0.0",
"tsx": "^4.19.3",
"typescript": "^5.8.3"
}
}