mirror of
https://github.com/labring/laf.git
synced 2026-01-25 16:07:45 +00:00
* chore: harmonise eslint configuration * chore: add husky,stylelint,editorconfig --------- Co-authored-by: maslow <wangfugen@126.com>
31 lines
848 B
JSON
31 lines
848 B
JSON
{
|
|
"name": "runtime-exporter",
|
|
"version": "1.0.0-beta.13",
|
|
"description": "the runtime metrics exporter of laf",
|
|
"main": "./dist/index.js",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "NODE_ENV=development node ./dist/index.js",
|
|
"build": "tsc -p tsconfig.json",
|
|
"watch": "tsc -p tsconfig.json -w",
|
|
"start": "NODE_ENV=production node ./dist/index.js",
|
|
"lint": "eslint . --fix --ext .ts --ext .js"
|
|
},
|
|
"devDependencies": {
|
|
"@types/express": "^4.17.20",
|
|
"@types/node": "^20.8.8",
|
|
"typescript": "^5.2.2"
|
|
},
|
|
"dependencies": {
|
|
"@kubernetes/client-node": "^0.19.0",
|
|
"database-proxy": "^1.0.0-beta.2",
|
|
"dotenv": "^16.3.1",
|
|
"express": "^4.18.2",
|
|
"express-async-errors": "^3.1.1",
|
|
"log4js": "^6.9.1",
|
|
"prom-client": "^15.0.0"
|
|
},
|
|
"lint-staged": {
|
|
"*.{ts,js}": "eslint --fix"
|
|
}
|
|
} |