You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
939 B
JSON
42 lines
939 B
JSON
{
|
|
"name": "polotsk-transit-api",
|
|
"version": "1.0.0",
|
|
"description": "Polotsk Public Transit API",
|
|
"main": "src/index.js",
|
|
"scripts": {
|
|
"start": "node src/index.js",
|
|
"dev": "nodemon src/index.js",
|
|
"migrate": "node src/utils/migrate.js",
|
|
"create-admin": "node scripts/create-admin.js",
|
|
"seed": "node src/utils/seed.js"
|
|
},
|
|
"keywords": [
|
|
"transit",
|
|
"api",
|
|
"polotsk"
|
|
],
|
|
"author": "Zakhar",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"bcrypt": "^6.0.0",
|
|
"bcryptjs": "^2.4.3",
|
|
"compression": "^1.7.4",
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.3.1",
|
|
"express": "^4.18.2",
|
|
"express-rate-limit": "^7.1.5",
|
|
"helmet": "^7.1.0",
|
|
"jsonwebtoken": "^9.0.3",
|
|
"multer": "^2.0.2",
|
|
"pg": "^8.11.3",
|
|
"redis": "^4.6.10",
|
|
"socket.io": "^4.7.2",
|
|
"uuid": "^9.0.1",
|
|
"winston": "^3.11.0",
|
|
"ws": "^8.20.0"
|
|
},
|
|
"devDependencies": {
|
|
"nodemon": "^3.0.2"
|
|
}
|
|
}
|