UNPKG

create-reagent-app

Version:

Bootstrap a ClojureScript frontend app that uses Reagent for the user interface and Shadow-CLJS as its build tool / compiler.

45 lines (44 loc) 1.18 kB
{ "name": "create-reagent-app", "description": "Bootstrap a ClojureScript frontend app that uses Reagent for the user interface and Shadow-CLJS as its build tool / compiler.", "keywords": [ "ClojureScript", "CLJS", "Reagent", "React", "Shadow-CLJS", "SPA", "Frontend", "Webapp" ], "license": "MIT", "homepage": "https://github.com/AutoScreencast/create-reagent-app#readme", "version": "0.1.0", "private": false, "bin": { "create-reagent-app": "bin/index.js" }, "files": [ "templates/basic/", "templates/basic-example/" ], "engines": { "node": ">=10" }, "scripts": { "start": "shadow-cljs watch script", "build": "shadow-cljs release script", "debug-build": "shadow-cljs release script --debug", "dev-build": "shadow-cljs compile script", "repl": "shadow-cljs cljs-repl script", "node-repl": "shadow-cljs node-repl", "clojure-repl": "shadow-cljs clj-repl", "clean": "rimraf bin", "nuke": "rimraf bin .shadow-cljs node_modules yarn.lock", "shadow-cljs-server": "shadow-cljs server" }, "dependencies": { "rimraf": "^3.0.2", "shadow-cljs": "2.11.18" } }