blob: b54c91161993002c70e820412b1ee26444a66f61 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
{
"name": "hack.chat-v2",
"version": "2.1.91",
"description": "a minimal distraction free chat application",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/hack-chat/main.git"
},
"engines": {
"node": ">= 10.15.1",
"npm": ">= 6.7.0"
},
"scripts": {
"start": "pm2 start ./server/main.js --node-args=\"-r esm\" --name hackchat-dev-server && cd ./clientSource && npm start && pm2 stop hackchat-dev-server",
"postinstall": "cd ./clientSource && npm install && cd .. & cd ./server && npm install && npm run config"
},
"author": "Marzavec",
"license": "WTFPL",
"dependencies": {
"esm": "^3.2.25",
"pm2": "^4.1.2"
}
}
|