2024-08-27 07:15:53 +02:00
|
|
|
{
|
|
|
|
"name": "svrjs-mod-starter",
|
|
|
|
"version": "0.0.0",
|
|
|
|
"private": true,
|
|
|
|
"scripts": {
|
|
|
|
"build": "node esbuild.config.js",
|
2025-01-02 13:44:43 +01:00
|
|
|
"dev": "concurrently \"NODE_ENV=development node esbuild.config.js\" \"wait-on svrjs/mods/mod.js && nodemon svrjs/svr.js --stdout-notty --no-save-config\"",
|
2024-08-27 07:15:53 +02:00
|
|
|
"lint": "eslint --no-error-on-unmatched-pattern src/**/*.js src/*.js tests/**/*.test.js tests/**/*.js",
|
|
|
|
"lint:fix": "npm run lint -- --fix",
|
2025-01-02 13:34:08 +01:00
|
|
|
"postinstall": "node svrjs.install.js",
|
2024-08-27 07:15:53 +02:00
|
|
|
"test": "jest"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"@eslint/js": "^9.9.1",
|
2025-01-02 13:44:43 +01:00
|
|
|
"concurrently": "^9.1.2",
|
2024-08-27 07:15:53 +02:00
|
|
|
"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",
|
|
|
|
"jest": "^29.7.0",
|
2025-01-02 13:44:43 +01:00
|
|
|
"nodemon": "^3.1.9",
|
2025-01-02 13:34:08 +01:00
|
|
|
"prettier": "^3.3.3",
|
2025-01-02 13:44:43 +01:00
|
|
|
"wait-on": "^8.0.1",
|
2025-01-02 13:34:08 +01:00
|
|
|
"zip": "^1.2.0"
|
2024-08-27 07:15:53 +02:00
|
|
|
}
|
|
|
|
}
|