Files
louiscklaw 6c60a73f30 update,
2025-01-31 19:15:17 +08:00

60 lines
1.9 KiB
JSON

{
"name": "party",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"docker_rebuild": "docker compose up -d --build",
"into_backend": "docker compose exec -it backend bash",
"start": "ts-node-dev app.ts",
"format": "prettier --config ./prettierrc.json --write .",
"lazy": "ts-node ./util/database/seedingFunctions/lazy.ts",
"initDB": "ts-node ./util/database/seedingFunctions/initDB.ts",
"clearDB": "ts-node ./util/database/seedingFunctions/clearDB.ts",
"truncateDB": "ts-node ./util/database/seedingFunctions/truncateDB.ts",
"regUsers": "ts-node ./util/database/seedingFunctions/regUsers.ts",
"createEvents": "ts-node ./util/database/seedingFunctions/createEvents.ts",
"joinEvents": "ts-node ./util/database/seedingFunctions/joinEvents.ts",
"addParticipants": "ts-node ./util/database/seedingFunctions/addParticipants.ts",
"addItems": "ts-node ./util/database/seedingFunctions/addItems.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pofungt/party.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/pofungt/party/issues"
},
"homepage": "https://github.com/pofungt/party#readme",
"dependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/dotenv": "^8.2.0",
"@types/express-session": "^1.17.5",
"@types/jsonfile": "^6.1.0",
"@types/pg": "^8.6.5",
"@types/socket.io": "^3.0.2",
"@types/winston": "^2.4.4",
"bcryptjs": "^2.4.3",
"cross-fetch": "^3.1.5",
"date-fns": "^2.29.3",
"dotenv": "^16.0.3",
"express": "^4.18.1",
"express-session": "^1.17.3",
"grant": "^5.4.21",
"jsonfile": "^6.1.0",
"pg": "^8.8.0",
"prettier": "^2.7.1",
"socket.io": "^4.5.2",
"ts-node": "^10.9.1",
"typescript": "^4.8.3",
"winston": "^3.8.2"
},
"devDependencies": {
"@types/express": "^4.17.14",
"ts-node-dev": "^2.0.0"
}
}