smk-chat/package.json

28 lines
567 B
JSON
Raw Normal View History

2024-06-11 17:22:27 +03:00
{
"name": "chat",
"version": "1.0.0",
"description": "",
"main": "test.js",
"scripts": {
"test": "nodemon test.js",
2024-06-21 16:26:34 +03:00
"dev": "nodemon src/index.js",
"prod": "node src/index.js"
2024-06-11 17:22:27 +03:00
},
"repository": {
"type": "git",
"url": "https://git.foxarmy.org/leca/smk-chat"
},
"author": "leca",
"license": "WTFPL",
"dependencies": {
"bcrypt": "^5.1.1",
"cookie-session": "^2.1.0",
"cors": "^2.8.5",
"express": "^4.19.2",
"express-session": "^1.18.0",
"nodemon": "^3.1.3",
2024-06-14 01:59:37 +03:00
"pg": "^8.12.0",
"ws": "^8.17.0"
2024-06-11 17:22:27 +03:00
}
}