-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·57 lines (57 loc) · 1.71 KB
/
package.json
File metadata and controls
executable file
·57 lines (57 loc) · 1.71 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
{
"name": "@simplyhexagonal/fastify-chat-server",
"version": "2.1.0",
"repository": {
"type": "git",
"url": "https://github.com/simplyhexagonal/fastify-chat-server"
},
"description": "Simple Websockets chat server including client UI",
"contributors": [
{
"name": "Jean M. Lescure",
"email": "opensource@jeanlescure.io",
"url": "http://jeanlescure.io/"
}
],
"main": "dist/index.js",
"bin": {
"fastify-chat-server": "dist/index.js"
},
"files": [
"dist",
"package.json",
"README.md"
],
"scripts": {
"tailwind": "npx @tailwindcss/cli -i ./src/tailwind.css -o ./src/assets/css/tailwind.css",
"dev": "rm -rf ./dist && mkdir -p dist && ./scripts/dev",
"build": "rm -rf ./dist && mkdir -p dist && ./scripts/build && cp ./src/worker.js ./dist/worker.js && cp -r ./src/assets ./dist/assets",
"postbuild": "npx rollup@3.18.0 ./dist/index.js --file ./dist/index.js --format cjs && ./scripts/binify && chmod +x dist/index.js"
},
"author": "Jean M. Lescure",
"license": "Apache-2.0",
"devDependencies": {
"@fastify/websocket": "^8.2.0",
"@minify-html/node": "^0.11.1",
"@tailwindcss/cli": "^4.1.13",
"@tailwindcss/typography": "^0.5.16",
"@types/lodash.debounce": "^4.0.9",
"@types/node": "^20.5.9",
"@types/ws": "^8.5.5",
"axios": "^1.5.0",
"daisyui": "^5.0.37",
"dotenv": "^16.3.1",
"esbuild": "^0.19.2",
"fastify": "^4.22.2",
"glob": "^10.3.4",
"livereload": "^0.9.3",
"lodash.debounce": "^4.0.8",
"node-html-parser": "^6.1.6",
"nodemon": "^3.0.1",
"short-unique-id": "^5.0.2",
"tailwindcss": "^4.1.7",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"yargs": "^17.7.2"
}
}