Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
36 lines (36 sloc)
1.23 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "wuffle-builder", | |
"description": "A task board for GitHub issues", | |
"version": "0.0.0", | |
"license": "MIT", | |
"private": true, | |
"scripts": { | |
"all": "run-s lint test build", | |
"lint": "run-s lint:*", | |
"lint:app": "cd packages/app && npm run lint", | |
"lint:board": "cd packages/board && npm run lint", | |
"dev:app": "cd packages/app && npm run dev", | |
"dev:board": "cd packages/board && npm run dev", | |
"dev": "NODE_ENV=development run-p dev:* -l", | |
"build:board": "cd packages/board && npm run build", | |
"build": "NODE_ENV=production run-s build:*", | |
"test:app": "cd packages/app && npm test", | |
"test:board": "cd packages/board && npm test", | |
"test": "NODE_ENV=test run-s test:*", | |
"auto-test:app": "cd packages/app && npm run auto-test", | |
"auto-test": "NODE_ENV=test run-s auto-test:*", | |
"start": "cd packages/app && npm run start", | |
"postinstall": "NODE_ENV=development lerna bootstrap", | |
"prerelease": "npm run all", | |
"release": "lerna publish", | |
"af": "npm audit fix && (cd packages/app && npm audit fix) && (cd packages/board && npm audit fix)" | |
}, | |
"devDependencies": { | |
"lerna": "^4.0.0", | |
"npm-run-all": "^4.1.5" | |
}, | |
"engines": { | |
"node": "14.x", | |
"npm": "6.x" | |
} | |
} |