Layout scaffolding for Web apps.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

26 lines
657 B

  1. {
  2. "name": "example",
  3. "version": "1.0.0",
  4. "main": "index.js",
  5. "license": "MIT",
  6. "scripts": {
  7. "start": "parcel index.html layouts/**/*.html static/**/*",
  8. "build": "parcel build index.html layouts/**/*.html",
  9. "postbuild": "parcel build static/**/*"
  10. },
  11. "alias": {
  12. "react": "../node_modules/react",
  13. "react-dom": "../node_modules/react-dom/profiling",
  14. "scheduler/tracing": "../node_modules/scheduler/tracing-profiling"
  15. },
  16. "devDependencies": {
  17. "@types/react": "^16.9.11",
  18. "@types/react-dom": "^16.8.4",
  19. "parcel": "1.12.3",
  20. "typescript": "^3.4.5"
  21. },
  22. "dependencies": {
  23. "react-markdown": "^6.0.2"
  24. }
  25. }