mirror of
https://github.com/philipredstone/relnet.git
synced 2025-06-16 20:51:16 +02:00
52 lines
1.6 KiB
JSON
52 lines
1.6 KiB
JSON
{
|
|
"name": "relnet",
|
|
"version": "1.0.0",
|
|
"main": "dist/main.js",
|
|
"scripts": {
|
|
"start": "node dist/server.js",
|
|
"dev": "nodemon --exec ts-node src/server.ts",
|
|
"build": "tsc",
|
|
"build:all": "npm run build && cd frontend && npm run build",
|
|
"format": "prettier --write \"src/**/*.{ts,js,json}\"",
|
|
"format:check": "prettier --check \"src/**/*.{ts,js,json}\"",
|
|
"format:all": "npm run format && cd frontend && npm run format"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/philipredstone/relnet.git"
|
|
},
|
|
"author": "Tobias Hopp <tobstr02> & Philip Rothstein <philipredstone>",
|
|
"license": "ISC",
|
|
"bugs": {
|
|
"url": "https://github.com/philipredstone/relnet/issues"
|
|
},
|
|
"homepage": "https://github.com/philipredstone/relnet#readme",
|
|
"description": "Visualize your network among you and your friends",
|
|
"dependencies": {
|
|
"bcryptjs": "^3.0.2",
|
|
"cookie-parser": "^1.4.7",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.5.0",
|
|
"express": "^5.1.0",
|
|
"express-validator": "^7.2.1",
|
|
"helmet": "^8.1.0",
|
|
"jsonwebtoken": "^9.0.2",
|
|
"mongoose": "^8.13.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bcryptjs": "^3.0.0",
|
|
"@types/cookie-parser": "^1.4.8",
|
|
"@types/cors": "^2.8.17",
|
|
"@types/dotenv": "^8.2.3",
|
|
"@types/express": "^5.0.1",
|
|
"@types/helmet": "^4.0.0",
|
|
"@types/jsonwebtoken": "^9.0.9",
|
|
"@types/mongoose": "^5.11.97",
|
|
"@types/node": "^22.14.1",
|
|
"nodemon": "^3.1.9",
|
|
"prettier": "^3.5.3",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.8.3"
|
|
}
|
|
}
|