package.json 455 B

12345678910111213141516171819202122
  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. "keywords": [],
  13. "author": "",
  14. "license": "ISC",
  15. "devDependencies": {
  16. "@types/express": "^4.17.14",
  17. "typescript": "^4.8.4"
  18. },
  19. "dependencies": {
  20. "express": "^4.18.2"
  21. }
  22. }