UNPKG

scenario-mock-server

Version:
68 lines 1.92 kB
{ "name": "scenario-mock-server", "version": "1.2.0", "description": "Mock server powered by scenarios", "main": "dist/index.js", "module": "dist/index.mjs", "types": "dist/index.d.ts", "files": [ "/dist" ], "keywords": [ "mock", "mocks", "server", "scenario", "scenarios" ], "author": "Kenneth Gray", "license": "MIT", "dependencies": { "@types/express": "^4.17.17", "cookie-parser": "^1.4.6", "cors": "^2.8.5", "express": "^4.18.2", "graphql": "^16.6.0", "graphql-tag": "^2.12.6", "path-to-regexp": "^6.2.1", "react": "^18.2.0", "react-dom": "^18.2.0", "server-with-kill": "^1.0.0", "zod": "^3.20.2" }, "devDependencies": { "@changesets/cli": "^2.26.0", "@types/cookie-parser": "^1.4.3", "@types/cors": "^2.8.13", "@types/node": "^18.11.18", "@types/react": "^18.0.27", "@types/react-dom": "^18.0.10", "@typescript-eslint/eslint-plugin": "^5.50.0", "@typescript-eslint/parser": "^5.50.0", "copyfiles": "^2.4.1", "eslint": "^8.33.0", "eslint-config-prettier": "^8.6.0", "eslint-plugin-prettier": "^4.2.1", "eslint-plugin-react": "^7.32.2", "node-fetch": "^3.3.0", "nodemon": "^2.0.20", "prettier": "^2.8.3", "rimraf": "^4.1.2", "ts-node": "^10.9.1", "tsup": "^6.5.0", "typescript": "^4.9.5", "vitest": "^0.28.4" }, "repository": { "type": "git", "url": "https://github.com/kenneth-gray/scenario-mock-server.git" }, "scripts": { "example": "nodemon --watch src --watch example --ext ts,tsx,css --exec 'ts-node -T example'", "lint": "eslint src --ext ts,tsx && eslint example --ext ts,tsx && tsc -p .", "test": "vitest --run", "test:watch": "vitest", "build": "rimraf dist && tsup-node --config tsup.config.ts && copyfiles -f src/assets/* dist/assets", "release": "pnpm build && changeset publish" } }