package.json 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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/react-router": "^5.1.3",
  37. "@types/react-router-dom": "^5.1.2",
  38. "@types/webpack-env": "^1.14.1",
  39. "@typescript-eslint/eslint-plugin": "^2.7.0",
  40. "@typescript-eslint/parser": "^2.7.0",
  41. "eslint": "^6.6.0",
  42. "eslint-config-standard": "^14.1.0",
  43. "eslint-plugin-import": "^2.18.2",
  44. "eslint-plugin-node": "^10.0.0",
  45. "eslint-plugin-promise": "^4.2.1",
  46. "eslint-plugin-react": "^7.16.0",
  47. "eslint-plugin-standard": "^4.0.1",
  48. "parcel-bundler": "^1.12.4",
  49. "postcss-modules": "^1.4.1",
  50. "postcss-nested": "^4.2.1",
  51. "react": "^16.11.0",
  52. "react-dom": "^16.11.0",
  53. "react-router": "^5.1.2",
  54. "react-router-dom": "^5.1.2",
  55. "typescript-plugin-css-modules": "^2.0.2"
  56. }
  57. }