create-bar-project
Version:
This module helps create a base for web application projects.
64 lines (63 loc) • 1.67 kB
JSON
{
"name": "create-bar-project",
"version": "5.2.2",
"main": "bin/index.js",
"repository": "https://github.com/BBJIM/create-bar-project.git",
"author": "Bar <baryed55gmail.com>",
"license": "MIT",
"private": false,
"keywords": [
"base-project",
"react",
"create-react-app",
"next.js",
"webpack",
"mobx",
"apollo"
],
"scripts": {
"start": "yarn build && ts-node -r tsconfig-paths/register ./src/App",
"copy-resources": "ts-node ./copy-resources.ts",
"build": "rimraf ./dist && tsc && yarn copy-resources",
"serve": "node -r ./tsconfig-paths-bootstrap.js ./dist/App",
"out-bin-install": "yarn build && npm install -g .",
"out-bin": "yarn build && npm update -g .",
"lint-ts": "eslint src/**/*.{js,jsx,ts,tsx} --quiet --fix",
"pub": "npm publish --access public"
},
"files": [
"bin",
"dist",
"node_modules",
"README.md"
],
"bin": {
"create-bar-project": "./bin/index.js"
},
"dependencies": {
"@types/figlet": "^1.2.0",
"@types/inquirer": "^7.3.1",
"@types/mkdirp": "^1.0.1",
"@types/ncp": "^2.0.4",
"@types/node": "^14.11.1",
"@types/rimraf": "^3.0.0",
"chalk": "^4.1.0",
"figlet": "^1.5.0",
"inquirer": "^7.3.3",
"mkdirp": "^1.0.4",
"ncp": "^2.0.0",
"rimraf": "^3.0.2"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.3",
"prettier": "^2.0.5",
"ts-node": "^9.0.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.9.5"
}
}