21 lines
447 B
JSON
21 lines
447 B
JSON
{
|
|
"name": "character-sandbox-server",
|
|
"version": "1.0.0",
|
|
"description": "Backend for the character sandbox",
|
|
"main": "index.js",
|
|
"type": "module",
|
|
"scripts": {
|
|
"start": "node index.js",
|
|
"dev": "node --watch index.js"
|
|
},
|
|
"dependencies": {
|
|
"bcrypt": "^5.1.1",
|
|
"better-sqlite3": "^12.11.1",
|
|
"cors": "^2.8.5",
|
|
"express": "^4.18.2",
|
|
"jsonwebtoken": "^9.0.2",
|
|
"pg": "^8.11.3",
|
|
"uuid": "^9.0.0"
|
|
}
|
|
}
|