1
0
mirror of https://github.com/hack-chat/main.git synced 2024-03-22 13:20:33 +08:00
hack-chat-main/package.json

38 lines
1.0 KiB
JSON
Raw Normal View History

2018-03-10 15:47:00 +08:00
{
"name": "hack.chat-v2",
2020-03-13 02:28:20 +08:00
"version": "2.1.93",
2018-03-10 15:47:00 +08:00
"description": "a minimal distraction free chat application",
2018-05-20 08:21:08 +08:00
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/hack-chat/main.git"
},
2018-03-10 15:47:00 +08:00
"engines": {
"node": ">= 10.15.1",
"npm": ">= 6.7.0"
2018-03-10 15:47:00 +08:00
},
"scripts": {
2020-03-13 02:28:20 +08:00
"start": "pm2 startOrReload pm2.config.js",
"stop": "pm2 stop pm2.config.js && pm2 delete pm2.config.js",
"logs": "pm2 logs",
"clear": "pm2 flush",
"status": "pm2 list",
"refresh": "pm2 flush && pm2 stop pm2.config.js && pm2 delete pm2.config.js",
2020-09-17 13:44:32 +08:00
"postinstall": "cd ./server && npm install && npm run config",
"lint": "eslint --ignore-path .gitignore -- ./server ",
"lint:fix": "eslint --ignore-path .gitignore --fix -- ./server "
2018-03-10 15:47:00 +08:00
},
"author": "Marzavec",
"license": "WTFPL",
"dependencies": {
2019-11-07 15:35:23 +08:00
"esm": "^3.2.25",
2020-09-08 12:51:47 +08:00
"http-server": "^0.12.3",
2020-09-17 13:44:32 +08:00
"pm2": "^4.4.1"
},
"devDependencies": {
"eslint": "^7.9.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0"
2018-03-10 15:47:00 +08:00
}
2018-05-20 08:21:08 +08:00
}