package.json 698 B

12345678910111213141516171819202122
  1. {
  2. "name": "doczilla_js_docs",
  3. "version": "1.0.0",
  4. "dependencies": {
  5. "@types/jsdom": "^21.1.6",
  6. "@types/pug": "^2.0.10",
  7. "jsdom": "^24.0.0",
  8. "ncp": "^2.0.0",
  9. "org.crazydoctor.expressts": "git+https://git.crazydoctor.org/expressts/org.crazydoctor.expressts",
  10. "pug": "^3.0.2"
  11. },
  12. "devDependencies": {
  13. "@typescript-eslint/eslint-plugin": "^7.1.0",
  14. "@typescript-eslint/parser": "^7.1.0",
  15. "eslint": "^8.57.0"
  16. },
  17. "scripts": {
  18. "lint": "eslint .",
  19. "build": "tsc && ncp ./sources.config.json ./dist/sources.config.json && ncp ./src/views/ ./dist/views && node ./node_scripts/copyStatics.js",
  20. "start": "npm run build && node ./dist/index.js"
  21. }
  22. }