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

45 lines
1.5 KiB
JSON

{
"name": "hydro-workspace",
"private": true,
"workspaces": [
"packages/*"
],
"main": "package.json",
"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",
"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.20",
4 years ago
"@types/node": "^14.14.22",
"@types/semver": "^7.3.4",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"cross-spawn": "^7.0.3",
"eslint": "^7.19.0",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-import-resolver-typescript": "^2.3.0",
"eslint-plugin-import": "^2.22.1",
"globby": "^11.0.2",
"jest": "^26.6.3",
"latest-version": "^5.1.0",
4 years ago
"ora": "^5.3.0",
"semver": "^7.3.4",
"ts-jest": "^26.5.0",
4 years ago
"typescript": "4.1.3"
4 years ago
},
"dependencies": {
4 years ago
"fs-extra": "^9.1.0",
"yargs": "^16.2.0"
}
}