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

53 lines
2.1 KiB
JSON

{
"name": "hydro-workspace",
"private": true,
"workspaces": [
"packages/*"
],
"main": "package.json",
"scripts": {
3 years ago
"build": "node build/prepare.js && tsc -b --verbose",
"build:watch": "node build/prepare.js && tsc -b --watch",
"build:ui": "node packages/ui-default/build",
"build:ui:dev": "node packages/ui-default/build --dev",
"build:ui:production": "node packages/ui-default/build --production",
4 years ago
"lint": "eslint packages --ext ts --fix",
"lint:ci": "eslint packages --ext ts",
"lint:ui": "yarn run --cwd=packages/ui-default eslint . --fix",
"lint:ui:ci": "yarn run --cwd=packages/ui-default eslint .",
"pub": "node build/publish",
3 years ago
"typedoc": "cross-env NODE_OPTIONS=--max_old_space_size=8192 typedoc",
"debug:all": "node --async-stack-traces --trace-deprecation --enable-source-maps build/start --debug --template",
"debug": "node --async-stack-traces --trace-deprecation --enable-source-maps node_modules/hydrooj/bin/hydrooj --debug --template",
"start:all": "node build/start",
"start": "node_modules/.bin/hydrooj",
"postinstall": "node build/hack",
"clean": "zsh -c \"rm -rf tsconfig.build.tsbuildinfo ./packages/*/tsconfig.tsbuildinfo ./packages/*/dist ./.coverage\""
},
"version": "1.0.0",
"license": "AGPL-3.0-only",
"devDependencies": {
"@types/cross-spawn": "^6.0.2",
3 years ago
"@types/node": "^15.14.7",
"@types/semver": "^7.3.8",
"@typescript-eslint/eslint-plugin": "^4.29.0",
"@typescript-eslint/parser": "^4.29.0",
3 years ago
"cac": "^6.7.3",
3 years ago
"cross-env": "^7.0.3",
"cross-spawn": "^7.0.3",
"eslint": "^7.32.0",
3 years ago
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-import-resolver-typescript": "^2.4.0",
"eslint-plugin-import": "^2.23.4",
"fs-extra": "^10.0.0",
"globby": "^11.0.4",
"latest-version": "^5.1.0",
3 years ago
"mongodb": "^3.6.11",
"nmls": "^3.0.1",
"ora": "^5.4.1",
4 years ago
"semver": "^7.3.5",
"typedoc": "^0.21.5",
3 years ago
"typescript": "4.2.4"
}
}