2025-01-12 18:33:26 +01:00
|
|
|
{
|
|
|
|
"name": "svrjs-mod-starter",
|
|
|
|
"version": "0.0.0",
|
|
|
|
"private": true,
|
|
|
|
"scripts": {
|
|
|
|
"build": "npm run clean && node esbuild.config.js",
|
|
|
|
"clean": "rimraf dist",
|
|
|
|
"cz": "cz",
|
|
|
|
"dev": "npm run clean && concurrently \"NODE_ENV=development node esbuild.config.js\" \"wait-on svrjs/mods/mod.js && nodemon svrjs/svr.js --stdout-notty --no-save-config\"",
|
|
|
|
"lint": "eslint --no-error-on-unmatched-pattern src/**/*.js src/*.js tests/**/*.test.js tests/**/*.js",
|
|
|
|
"lint:fix": "npm run lint -- --fix",
|
|
|
|
"postinstall": "node svrjs.install.js",
|
|
|
|
"prepare": "husky",
|
|
|
|
"test": "jest"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@commitlint/cli": "^19.6.1",
|
|
|
|
"@commitlint/config-conventional": "^19.6.0",
|
|
|
|
"@eslint/js": "^9.9.1",
|
|
|
|
"commitizen": "^4.3.1",
|
|
|
|
"concurrently": "^9.1.2",
|
|
|
|
"cz-conventional-changelog": "^3.3.0",
|
|
|
|
"esbuild": "^0.23.1",
|
|
|
|
"eslint": "^9.9.1",
|
|
|
|
"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.7",
|
|
|
|
"jest": "^29.7.0",
|
|
|
|
"lint-staged": "^15.3.0",
|
|
|
|
"nodemon": "^3.1.9",
|
|
|
|
"prettier": "^3.3.3",
|
|
|
|
"rimraf": "^5.0.10",
|
|
|
|
"wait-on": "^8.0.1",
|
|
|
|
"zip": "^1.2.0"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2025-01-14 17:27:38 +01:00
|
|
|
"modsecurity": "^0.0.3"
|
2025-01-12 18:33:26 +01:00
|
|
|
},
|
|
|
|
"config": {
|
|
|
|
"commitizen": {
|
|
|
|
"path": "./node_modules/cz-conventional-changelog"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|