33 lines
1.1 KiB
JSON
33 lines
1.1 KiB
JSON
{
|
|
"name": "backend",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"dev": "DB_CLIENT=mariadb DB_HOST=127.0.0.1 DB_PORT=3307 DB_USER=tier_cursor DB_PASSWORD=tier_cursor1234 DB_NAME=tier_cursor nodemon --legacy-watch --watch index.js --watch src index.js",
|
|
"start": "DB_CLIENT=mariadb DB_HOST=127.0.0.1 DB_PORT=3307 DB_USER=tier_cursor DB_PASSWORD=tier_cursor1234 DB_NAME=tier_cursor node index.js",
|
|
"dev:lowdb": "nodemon --legacy-watch --watch index.js --watch src index.js",
|
|
"start:lowdb": "node index.js",
|
|
"migrate:lowdb": "DB_CLIENT=mariadb DB_HOST=127.0.0.1 DB_PORT=3307 DB_USER=tier_cursor DB_PASSWORD=tier_cursor1234 DB_NAME=tier_cursor node scripts/migrate-lowdb-to-mariadb.js"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"type": "commonjs",
|
|
"dependencies": {
|
|
"bcryptjs": "^3.0.3",
|
|
"cors": "^2.8.6",
|
|
"express": "^5.2.1",
|
|
"express-session": "^1.19.0",
|
|
"lowdb": "^7.0.1",
|
|
"multer": "^2.1.1",
|
|
"mysql2": "^3.20.0",
|
|
"nanoid": "^5.1.7",
|
|
"session-file-store": "^1.5.0",
|
|
"zod": "^4.3.6"
|
|
},
|
|
"devDependencies": {
|
|
"nodemon": "^3.1.14"
|
|
}
|
|
}
|