34 lines
899 B
JSON
34 lines
899 B
JSON
{
|
|
"name": "chat-server",
|
|
"version": "1.2.6",
|
|
"description": "An API centric chat server. Uses Sequelize and mariaDB by default.",
|
|
"main": "server/server.js",
|
|
"scripts": {
|
|
"start": "node server/server.js",
|
|
"dev": "npm run watch:server",
|
|
"watch:server": "nodemon . --ext js,jsx,json --ignore 'node_modules/*'"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/krgamestudios/chat-server.git"
|
|
},
|
|
"author": "Kayne Ruse",
|
|
"license": "ISC",
|
|
"bugs": {
|
|
"url": "https://github.com/krgamestudios/chat-server/issues"
|
|
},
|
|
"homepage": "https://github.com/krgamestudios/chat-server#readme",
|
|
"dependencies": {
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^8.6.0",
|
|
"express": "^4.17.1",
|
|
"jsonwebtoken": "^8.5.1",
|
|
"mariadb": "^2.5.4",
|
|
"sequelize": "^6.6.5",
|
|
"socket.io": "^4.1.3"
|
|
},
|
|
"devDependencies": {
|
|
"nodemon": "^2.0.12"
|
|
}
|
|
}
|