{ "name": "svrjs-build", "version": "0.0.0", "private": true, "scripts": { "build": "npm run clean && NODE_ENV=production node esbuild.config.js", "cz": "cz", "clean": "rimraf dist && rimraf out && rimraf generatedAssets", "dev": "npm run clean && concurrently \"NODE_ENV=development node esbuild.config.js\" \"wait-on dist/svr.js && nodemon dist/svr.js --stdout-notty\"", "lint": "eslint --no-error-on-unmatched-pattern src/**/*.js src/*.js tests/**/*.test.js tests/**/*.js tests/*.test.js tests/*.js", "lint:fix": "npm run lint -- --fix", "prepare": "husky", "start": "node dist/svr.js", "test": "jest", "test:coverage": "jest --coverage", "test:middleware": "jest tests/middleware", "test:utils": "jest tests/utils" }, "devDependencies": { "@commitlint/cli": "^19.4.1", "@commitlint/config-conventional": "^19.4.1", "@eslint/js": "^9.9.0", "archiver": "^7.0.1", "chokidar": "^4.0.1", "commitizen": "^4.3.0", "concurrently": "^9.1.0", "cz-conventional-changelog": "^3.3.0", "ejs": "^3.1.10", "esbuild": "^0.23.1", "esbuild-plugin-copy": "^2.1.1", "eslint": "^9.9.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-jest": "^28.8.0", "eslint-plugin-prettier": "^5.2.1", "globals": "^15.9.0", "husky": "^9.1.5", "jest": "^29.7.0", "lint-staged": "^15.2.10", "node-mocks-http": "^1.15.1", "nodemon": "^3.1.7", "prettier": "^3.3.3", "rimraf": "^5.0.10", "wait-on": "^8.0.1" }, "dependencies": { "formidable": "^2.1.2", "mime-types": "^2.1.35", "ocsp": "^1.2.0", "tar": "^6.2.1" }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" } } }