1
0
Fork 0
forked from svrjs/svrjs
This repository has been archived on 2024-11-10. You can view files and clone it, but cannot push or open issues or pull requests.
svrjs/package.json

57 lines
1.7 KiB
JSON
Raw Normal View History

{
"name": "svrjs-build",
"version": "0.0.0",
"private": true,
"scripts": {
"build": "npm run clean && NODE_ENV=production node esbuild.config.js",
2024-09-01 21:43:19 +02:00
"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 --no-save-config\"",
"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",
2024-09-01 21:43:19 +02:00
"prepare": "husky",
2024-08-23 17:21:52 +02:00
"start": "node dist/svr.js",
"test": "jest",
"test:coverage": "jest --coverage",
"test:middleware": "jest tests/middleware",
2024-09-01 21:43:19 +02:00
"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",
2024-09-01 21:43:19 +02:00
"commitizen": "^4.3.0",
"concurrently": "^9.1.0",
2024-09-01 21:43:19 +02:00
"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",
2024-08-25 17:59:52 +02:00
"ocsp": "^1.2.0",
"tar": "^6.2.1"
2024-09-01 21:43:19 +02:00
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}