UNPKG

synopkg

Version:

Consistent dependency versions in large JavaScript Monorepos

114 lines (113 loc) 4.29 kB
{ "name": "tinylicious", "version": "6.0.0", "description": "Tiny, test implementation of the routerlicious reference service", "homepage": "https://fluidframework.com", "repository": { "type": "git", "url": "https://github.com/microsoft/FluidFramework.git", "directory": "server/routerlicious/packages/tinylicious" }, "license": "MIT", "author": "Microsoft and contributors", "main": "dist/index.js", "types": "dist/index.d.ts", "bin": "dist/index.js", "scripts": { "build": "npm run build:compile && npm run lint && npm run build:docs", "build:compile": "npm run tsc && npm run build:test", "build:docs": "api-extractor run --local --typescript-compiler-folder ./node_modules/typescript && copyfiles -u 1 \"./_api-extractor-temp/doc-models/*\" ../../_api-extractor-temp/", "build:test": "tsc --project ./src/test/tsconfig.json", "check:release-tags": "api-extractor run --local --config ./api-extractor-lint.json", "ci:build:docs": "api-extractor run --typescript-compiler-folder ./node_modules/typescript && copyfiles -u 1 \"./_api-extractor-temp/doc-models/*\" ../../_api-extractor-temp/", "clean": "rimraf --glob dist lib \"**/*.tsbuildinfo\" \"**/*.build.log\" _api-extractor-temp nyc", "eslint": "eslint --format stylish src", "eslint:fix": "eslint --format stylish src --fix --fix-type problem,suggestion,layout", "format": "npm run prettier:fix", "lint": "npm run prettier && npm run check:release-tags && npm run eslint", "lint:fix": "npm run prettier:fix && npm run eslint:fix", "prettier": "prettier --check . --cache --ignore-path ../../.prettierignore", "prettier:fix": "prettier --write . --cache --ignore-path ../../.prettierignore", "start": "pm2 start -n tinylicious dist/index.js", "start:debug": "node --inspect=0.0.0.0:9229 dist/index.js", "stop": "pm2 stop tinylicious", "test": "npm run test:mocha", "test:mocha": "mocha --recursive dist/test", "tsc": "tsc" }, "dependencies": { "@fluidframework/common-utils": "^3.1.0", "@fluidframework/gitresources": "workspace:~", "@fluidframework/protocol-base": "workspace:~", "@fluidframework/protocol-definitions": "^3.2.0", "@fluidframework/server-lambdas": "workspace:~", "@fluidframework/server-local-server": "workspace:~", "@fluidframework/server-memory-orderer": "workspace:~", "@fluidframework/server-services-client": "workspace:~", "@fluidframework/server-services-core": "workspace:~", "@fluidframework/server-services-shared": "workspace:~", "@fluidframework/server-services-telemetry": "workspace:~", "@fluidframework/server-services-utils": "workspace:~", "@fluidframework/server-test-utils": "workspace:~", "agentkeepalive": "^4.2.1", "axios": "^1.7.7", "body-parser": "^1.20.3", "charwise": "^3.0.1", "compression": "^1.7.2", "cookie-parser": "^1.4.7", "cors": "^2.8.4", "detect-port": "^1.3.0", "express": "^4.21.1", "isomorphic-git": "^1.25.7", "json-stringify-safe": "^5.0.1", "level": "^8.0.0", "level-sublevel": "6.6.4", "lodash": "^4.17.21", "morgan": "^1.8.1", "nconf": "^0.12.0", "socket.io": "^4.8.0", "split": "^1.0.0", "uuid": "^9.0.0", "winston": "^3.6.0" }, "devDependencies": { "@fluid-internal/mocha-test-setup": "~2.0.5", "@fluidframework/build-common": "^2.0.3", "@fluidframework/eslint-config-fluid": "^5.2.0", "@microsoft/api-extractor": "^7.45.1", "@types/compression": "^1.7.2", "@types/cookie-parser": "^1.4.1", "@types/cors": "^2.8.4", "@types/detect-port": "^1.3.0", "@types/express": "^4.17.21", "@types/express-serve-static-core": "^4.17.32", "@types/json-stringify-safe": "^5.0.0", "@types/lodash": "^4.14.149", "@types/mocha": "^9.1.1", "@types/morgan": "^1.7.35", "@types/nconf": "^0.10.0", "@types/node": "^18.19.39", "@types/rimraf": "^3.0.0", "@types/split": "^0.3.28", "@types/uuid": "^9.0.2", "copyfiles": "^2.4.1", "cross-env": "^7.0.3", "eslint": "~8.55.0", "mocha": "^10.2.0", "mocha-json-output-reporter": "^2.0.1", "mocha-multi-reporters": "^1.5.1", "moment": "^2.21.0", "pm2": "^5.4.2", "prettier": "~3.0.3", "rimraf": "^4.4.0", "ts-node": "^8.6.2", "typescript": "~5.1.6" }, "engines": { "node": ">=14.0.0" }, "typeValidation": { "disabled": true, "broken": {} } }