package.json 598 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "wifistick-rest",
  3. "type": "module",
  4. "version": "1.0.0",
  5. "description": "",
  6. "main": "index.js",
  7. "scripts": {
  8. "test": "echo \"Error: no test specified\" && exit 1",
  9. "build": "tsc",
  10. "start": "yarn build && node build/app.js"
  11. },
  12. "husky": {
  13. "hooks": {
  14. "pre-commit": "prettier --write src/* **/*.json"
  15. }
  16. },
  17. "keywords": [],
  18. "author": "",
  19. "license": "ISC",
  20. "devDependencies": {
  21. "@types/express": "^4.17.14",
  22. "husky": "^8.0.1",
  23. "prettier": "^2.7.1",
  24. "typescript": "^4.8.4"
  25. },
  26. "dependencies": {
  27. "express": "^4.18.2"
  28. }
  29. }