| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- {
- "name": "serman",
- "version": "1.0.0",
- "description": "Server monitoring and management tool",
- "main": "index.js",
- "scripts": {
- "dev": "npm run build && npm run run-dev",
- "build": "npm run back && npm run front",
- "back": "tsoa spec-and-routes",
- "front": "cd ./front && tsc && cd ../ && npm run webpack && npm run webpack-devel",
- "webpack": "npx webpack -o ./build/ --mode=production -c ./front/webpack.config.js --env=output=front.mins.js",
- "webpack-devel": "npx webpack -o ./build/ --mode=development -c ./front/webpack.config.js --env=output=front.js",
- "run": "tsoa spec-and-routes && npx ts-node src/index.ts",
- "run-dev": "nodemon src/index.ts",
- "generate-key": "npx ts-node src/index.ts --generate-key"
- },
- "repository": {
- "type": "git",
- "url": "https://git.craftlab.cc/isundil/serman"
- },
- "author": "isundil",
- "license": "GPG",
- "dependencies": {
- "@types/express": "^5.0.3",
- "@types/express-handlebars": "^5.3.1",
- "@types/swagger-ui-express": "^4.1.8",
- "express": "^5.1.0",
- "express-handlebars": "^8.0.3",
- "linux-systemd": "^0.0.1",
- "mariadb": "^3.4.5",
- "swagger-jsdoc": "^6.2.8",
- "swagger-ui-express": "^5.0.1",
- "systeminformation": "^5.27.8",
- "ts-node": "^10.9.2",
- "tsconfig-paths": "^4.2.0",
- "tsoa": "^6.6.0",
- "webpack": "^5.101.3",
- "webpack-cli": "^6.0.1"
- },
- "devDependencies": {
- "nodemon": "^3.1.10"
- }
- }
|