You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Hydro/package.json

44 lines
1.5 KiB
JSON

{
"name": "hydro-workspace",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "node build/build.js",
"build:watch": "node build/build.js --watch",
4 years ago
"lint": "eslint packages --ext ts --fix",
"pub": "node build/publish",
"jest": "node build/jest",
"debug": "node --async-stack-traces --trace-deprecation --enable-source-maps build/start --debug",
"start": "node build/start",
4 years ago
"clean": "zsh -c \"rm -rf tsconfig.build.tsbuildinfo ./packages/*/tsconfig.tsbuildinfo ./packages/*/dist ./.coverage\""
},
"version": "1.0.0",
"license": "AGPL-3.0-only",
"devDependencies": {
"@shelf/jest-mongodb": "^1.2.3",
"@types/cross-spawn": "^6.0.2",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.2",
"@types/semver": "^7.3.4",
4 years ago
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"cross-spawn": "^7.0.3",
"eslint": "^7.9.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.0",
"globby": "^11.0.1",
"jest": "^26.4.2",
"latest-version": "^5.1.0",
"ora": "^5.1.0",
"semver": "^7.3.2",
"ts-jest": "^26.4.0",
"typescript": "^4.0.3"
4 years ago
},
"dependencies": {
"fs-extra": "^9.0.1",
"yargs": "^16.0.3"
}
4 years ago
}