{ "author": { "name": "Verdaccio Maintainers", "email": "verdaccio.npm@gmail.com" }, "repository": { "type": "git", "url": "git://github.com/verdaccio/verdaccio" }, "homepage": "https://verdaccio.org", "private": true, "funding": { "type": "opencollective", "url": "https://opencollective.com/verdaccio" }, "devDependencies": { "@babel/cli": "7.12.1", "@babel/core": "7.12.3", "@babel/node": "7.12.6", "@babel/plugin-proposal-class-properties": "7.12.1", "@babel/plugin-proposal-decorators": "7.12.1", "@babel/plugin-proposal-export-namespace-from": "7.12.1", "@babel/plugin-proposal-function-sent": "7.12.1", "@babel/plugin-proposal-json-strings": "7.12.1", "@babel/plugin-proposal-nullish-coalescing-operator": "7.12.1", "@babel/plugin-proposal-numeric-separator": "7.12.5", "@babel/plugin-proposal-object-rest-spread": "7.12.1", "@babel/plugin-proposal-optional-chaining": "7.12.1", "@babel/plugin-proposal-throw-expressions": "7.12.1", "@babel/plugin-syntax-dynamic-import": "7.8.3", "@babel/plugin-syntax-import-meta": "7.10.4", "@babel/plugin-transform-async-to-generator": "7.12.1", "@babel/plugin-transform-classes": "7.12.1", "@babel/plugin-transform-runtime": "7.12.1", "@babel/polyfill": "7.12.1", "@babel/preset-env": "7.12.1", "@babel/preset-react": "7.12.5", "@babel/preset-typescript": "7.12.1", "@babel/register": "7.12.1", "@babel/runtime": "7.12.5", "@changesets/changelog-github": "0.2.7", "@changesets/cli": "2.11.2", "@changesets/get-dependents-graph": "^1.1.3", "@commitlint/cli": "8.3.5", "@commitlint/config-conventional": "8.2.0", "@octokit/rest": "17.0.0", "@types/async": "3.2.3", "@types/express": "4.17.6", "@types/http-errors": "1.6.3", "@types/jest": "^26.0.15", "@types/lodash": "4.14.165", "@types/mime": "2.0.2", "@types/minimatch": "3.0.3", "@types/node": "^14.14.7", "@types/request": "2.48.3", "@types/semver": "7.2.0", "@types/supertest": "2.0.9", "@typescript-eslint/eslint-plugin": "4.7.0", "@typescript-eslint/parser": "4.7.0", "@verdaccio/types": "workspace:*", "@verdaccio/ui-theme": "^1.14.0", "babel-core": "7.0.0-bridge.0", "babel-eslint": "10.1.0", "babel-jest": "26.1.0", "babel-plugin-dynamic-import-node": "2.3.3", "babel-plugin-emotion": "10.0.33", "codecov": "3.6.1", "core-js": "^3.6.5", "cross-env": "7.0.2", "detect-secrets": "1.0.6", "eslint": "7.5.0", "eslint-config-google": "0.14.0", "eslint-config-prettier": "6.10.0", "eslint-plugin-babel": "5.3.0", "eslint-plugin-import": "2.22.0", "eslint-plugin-jest": "23.8.0", "eslint-plugin-jsx-a11y": "6.3.1", "eslint-plugin-react": "7.20.6", "eslint-plugin-react-hooks": "4.1.0", "eslint-plugin-simple-import-sort": "5.0.2", "eslint-plugin-verdaccio": "8.4.2", "fs-extra": "8.1.0", "get-stdin": "7.0.0", "husky": "2.7.0", "in-publish": "2.0.0", "jest": "26.1.0", "jest-environment-node": "26.1.0", "jest-junit": "11.0.1", "kleur": "3.0.3", "lint-staged": "8.2.1", "nock": "12.0.3", "npm-run-all": "4.1.5", "prettier": "2.0.5", "rimraf": "3.0.2", "selfsigned": "1.10.7", "standard-version": "8.0.0", "supertest": "4.0.2", "ts-node": "^9.0.0", "typescript": "^4.0.5", "verdaccio": "^4.8.1", "verdaccio-audit": "workspace:*", "verdaccio-auth-memory": "workspace:*", "verdaccio-htpasswd": "workspace:*", "verdaccio-memory": "workspace:*" }, "scripts": { "dev": "cross-env BABEL_ENV=registry babel-node --extensions \".ts,.tsx\" packages/cli/src", "clean": "pnpm recursive run clean", "build": "pnpm recursive run build", "docker": "docker build -t verdaccio/verdaccio:local . --no-cache", "format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,yml,yaml,md}\"", "format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,yml,yaml,md}\"", "lint": "eslint \"**/*.{js,jsx,ts,tsx}\"", "test": "pnpm recursive test --filter ./packages", "test:e2e:cli": "pnpm test --filter ...@verdaccio/e2e-cli", "start": "node packages/verdaccio/debug/bootstrap.js", "start:ts": "ts-node packages/verdaccio/src/start.ts", "debug": "node --inspect packages/verdaccio/debug/bootstrap.js", "debug:break": "node --inspect-brk packages/verdaccio/debug/bootstrap.js", "website:lint": "cd website && yarn lint", "website:develop": "cd website && yarn develop", "website:build": "cd website && yarn build", "changeset": "changeset", "changeset:check": "changeset status --since-master", "ci:version": "run-s ci:version:changeset ci:version:install", "ci:version:install": "pnpm install --frozen-lockfile=false", "ci:version:changeset": "changeset version" }, "license": "MIT", "commitlint": { "extends": [ "@commitlint/config-conventional" ] }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "*.{js,jsx,ts,tsx,json,yml,yaml,md}": "prettier --write", "*.{js,jsx,ts,tsx}": "eslint --cache --fix" } }