34 lines
862 B
JSON
34 lines
862 B
JSON
{
|
|
"name": "ve-router-backend",
|
|
"version": "1.0.0",
|
|
"description": "Router Management System Backend",
|
|
"main": "dist/app.js",
|
|
"scripts": {
|
|
"start": "node dist/app.js",
|
|
"dev": "nodemon --exec ts-node src/app.ts",
|
|
"build": "tsc",
|
|
"test": "jest",
|
|
"lint": "eslint src/**/*.ts",
|
|
"format": "prettier --write \"src/**/*.ts\""
|
|
},
|
|
"dependencies": {
|
|
"cors": "^2.8.5",
|
|
"dotenv": "^16.4.5",
|
|
"express": "^4.18.2",
|
|
"mysql2": "^3.2.0",
|
|
"ve-router-backend": "file:",
|
|
"winston": "^3.16.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/cors": "^2.8.13",
|
|
"@types/express": "^4.17.17",
|
|
"@types/node": "^18.15.11",
|
|
"@typescript-eslint/eslint-plugin": "^5.57.1",
|
|
"@typescript-eslint/parser": "^5.57.1",
|
|
"eslint": "^8.37.0",
|
|
"nodemon": "^2.0.22",
|
|
"ts-node": "^10.9.2",
|
|
"typescript": "^5.0.3"
|
|
}
|
|
}
|