apo-boilerplate
Version:
This tool is meant to help in the generation of initial projects for the majority of the API centric course work. It has a CLI interface that allows students to create a useful base application for labs and for final projects.
49 lines (48 loc) • 1.25 kB
JSON
{
"name": "apo-boilerplate",
"version": "0.0.1",
"description": "",
"main": "dist/index.js",
"scripts": {
"start": "node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"develop": "yarn build:dev && yarn start",
"develop:watch": "nodemon --watch src --exec yarn develop",
"build:tsc": "tsc",
"build:bundle": "rollup -c",
"minify": "terser --compress --mangle --toplevel --output dist/index.js -- dist/index.js",
"build": "yarn build:tsc && yarn build:bundle && yarn minify",
"build:dev": "yarn build:tsc && yarn build:bundle",
"publish": "np"
},
"files": [
"dist/index.js"
],
"keywords": [
"boilerplate",
"pdx",
"code guild",
"express",
"learning helper"
],
"author": "Zack Kollar (SeedyROM)",
"engines": {
"node": ">=8.9.0",
"yarn": ">=1.15.0"
},
"license": "MIT",
"bin": {
"create-boilerplate": "dist/index.js"
},
"devDependencies": {
"cli-spinner": "^0.2.10",
"nodemon": "^1.19.1",
"np": "^5.0.3",
"rollup": "^1.19.4",
"rollup-plugin-commonjs": "^10.0.2",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"terser": "^4.1.3",
"typescript": "^3.5.3"
}
}