package.json
{
"name": "cf-workers-dashboard",
"version": "1.0.0",
"private": true,
"scripts": {
"postinstall": "lerna bootstrap",
"prebuild": "lerna run --parallel clean && lerna run --scope client build",
"build": "wrangler build",
"clean:node": "rimraf node_modules package-lock.json",
"test:client": "CI=true lerna run --scope client test",
"test:server": "CI=true lerna run --scope server test",
"test": "CI=true lerna run test:ci",
"lint": "prettier -c .",
"lint:fix": "npm run lint -- --write",
"start": "node index.js",
"start:client": "CI=true lerna run --scope client --stream start",
"start:worker": "wrangler dev",
"start:tunnel": "cloudflared tunnel --url localhost:3000 --metrics localhost:8081",
"predeploy": "npm run prebuild",
"deploy": "wrangler publish --env production",
"updatePackages": "node updatePackages.js && npm i"
},
"repository": {
"type": "git",
"url": "git@github.com:GregBrimble/cf-workers-dashboard.git"
},
"author": {
"name": "Greg Brimble",
"email": "developer@gregbrimble.com",
"url": "https://gregbrimble.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/GregBrimble/cf-workers-dashboard/issues"
},
"homepage": "https://cf-workers-dashboard.gregbrimble.workers.dev/",
"devDependencies": {
"@cloudflare/wrangler": "1.9.0",
"cross-fetch": "3.0.4",
"husky": "4.2.5",
"lerna": "3.20.2",
"npm-check-updates": "4.1.2",
"prettier": "2.0.5",
"rimraf": "3.0.2",
"ts-loader": "7.0.2",
"typescript": "3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run lint || (npm run lint:fix && npm run lint)",
"pre-push": "npm test"
}
},
"dependencies": {}
}