UNPKG

devkit-js

Version:

Devkit CLI is a Command Line tool for superfast scaffolding of any simple Vanilla JavaScript App

38 lines (37 loc) 993 B
{ "name": "--project-name--", "version": "1.0.0", "description": "", "main": "index.js", "scripts": { "preinstall": "npx npm-force-resolutions", "clean": "rm -rf ./development && rm -rf ./.cache && rm -rf ./public", "build": "npm run clean && parcel build src/views/index.html --out-dir public --public-url ./", "dev:client": "npm run clean && parcel src/views/index.html --out-dir development -p 3000" }, "keywords": [], "author": "--author-name--", "license": "ISC", "resolutions": { "node-forge": "0.10.0" }, "devDependencies": { "@babel/core": "^7.12.10", "@babel/plugin-transform-runtime": "^7.12.10", "@babel/runtime-corejs2": "^7.12.5", "parcel-bundler": "^1.12.4", "sass": "^1.32.0" }, "babel": { "plugins": [ [ "@babel/plugin-transform-runtime", { "corejs": 2, "regenerator": true } ] ] }, "dependencies": {} }