UNPKG

@practica/create-node-app

Version:

Create Node.js app that is packed with best practices AND strive for simplicity

35 lines (34 loc) 1.08 kB
{ "name": "practica-example-app", "version": "0.0.3", "description": "", "main": "index.js", "scripts": { "test": "turbo run test --parallel", "build": "turbo run build", "build:watch": "tsc --watch", "lint": "eslint '**/*.{js,jsx,ts}'", "maintenance:delete-node-modules": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +", "maintenance:delete-dist": "find . -name '.dist' -type d -prune -exec rm -rf '{}' +", "maintenance:delete-package-lock": "find . -name 'package-lock.json' -type f -prune -exec rm -rf '{}' +" }, "workspaces": [ "libraries/*", "services/*" ], "author": "", "license": "ISC", "devDependencies": { "@typescript-eslint/eslint-plugin": "^7.4.0", "@typescript-eslint/parser": "^7.4.0", "eslint": "^8.18.0", "eslint-config-airbnb-base": "^15.0.0", "eslint-config-prettier": "^8.5.0", "eslint-plugin-import": "^2.26.0", "eslint-plugin-prettier": "^5.0.0", "graphviz": "^0.0.9", "turbo": "^1.9.3", "typescript": "5.2.2", "@types/node": "^20.11.30" } }