package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "@mightyplow/simple-calorie-tracker",
  3. "version": "1.0.0",
  4. "description": "A simple web app to track calories.",
  5. "main": "index.js",
  6. "scripts": {
  7. "clean": "rm -rf ./dist",
  8. "eslint": "eslint ./src --ext .js,.jsx,.ts,.tsx",
  9. "tscheck": "tsc --noEmit",
  10. "prebuild": "npm run clean && npm run tscheck",
  11. "build": "parcel build -d dist --public-url ./ ./src/index.html",
  12. "predev": "npm run clean",
  13. "dev": "parcel serve -d dist --public-url / ./src/index.html",
  14. "test": "echo \"Error: no test specified\" && exit 1"
  15. },
  16. "repository": {
  17. "type": "git",
  18. "url": "https://git.mightyplow.net/mightyplow/simple-calorie-tracker"
  19. },
  20. "keywords": [
  21. "webapp",
  22. "calories",
  23. "fitness",
  24. "app",
  25. "web"
  26. ],
  27. "author": "mightyplow@gmail.com",
  28. "license": "UNLICENSED",
  29. "dependencies": {
  30. "typescript": "^3.7.2"
  31. },
  32. "devDependencies": {
  33. "@types/node": "^12.12.7",
  34. "@types/react": "^16.9.11",
  35. "@types/react-dom": "^16.9.4",
  36. "@types/webpack-env": "^1.14.1",
  37. "@typescript-eslint/eslint-plugin": "^2.7.0",
  38. "@typescript-eslint/parser": "^2.7.0",
  39. "eslint": "^6.6.0",
  40. "eslint-config-standard": "^14.1.0",
  41. "eslint-plugin-import": "^2.18.2",
  42. "eslint-plugin-node": "^10.0.0",
  43. "eslint-plugin-promise": "^4.2.1",
  44. "eslint-plugin-react": "^7.16.0",
  45. "eslint-plugin-standard": "^4.0.1",
  46. "parcel-bundler": "^1.12.4",
  47. "react": "^16.11.0",
  48. "react-dom": "^16.11.0"
  49. }
  50. }