UNPKG

testbook

Version:
98 lines (97 loc) 2.46 kB
{ "name": "testbook", "version": "2.7.1", "description": "Testing UI", "dependencies": { "@types/jest": "^26.0.19", "@types/node": "^14.11.2", "@types/react": "^17.0.0", "@types/react-dom": "^17.0.0", "@types/react-router-dom": "^5.1.5", "express": "^4.17.1", "glob": "^7.1.6", "jsdom": "^16.4.0", "prop-types": "^15.7.2", "query-string": "^6.13.1", "react": "^17.0.1", "react-dom": "^17.0.1", "react-json-editor-ajrm": "^2.5.13", "react-router-dom": "^5.1.2", "react-scripts": "4.0.1", "tailwindcss": "1.9.0", "ts-loader": "^8.0.7", "ts-morph": "^8.1.2", "typescript": "^4.1.3", "uuid": "^8.0.0" }, "devDependencies": { "@types/express": "^4.17.8", "@types/jsdom": "^16.2.4", "husky": "^4.3.6", "lint-staged": "^10.5.3", "prettier": "2.2.1", "ts-jest": "^26.4.1", "ts-node-dev": "^1.0.0" }, "bin": { "testbook": "bin/cli.js" }, "scripts": { "start": "react-scripts start", "build": "react-scripts build", "build:api": "tsc --project server/tsconfig.json", "test": "react-scripts test", "test:api": "jest --config server/jest.config.json", "debug:api": "NODE_ENV=production TS_NODE_PROJECT=server/tsconfig.json node -r ts-node/register --inspect-brk server/server.ts ../build", "eject": "react-scripts eject", "build:tailwind": "tailwindcss build src/index.tailwind.css -o src/index.css", "prestart": "npm run build:tailwind", "prebuild": "npm run build:tailwind" }, "eslintConfig": { "extends": "react-app" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "**/*": "prettier --write --ignore-unknown" }, "browserslist": { "production": [ ">0.2%", "not dead", "not op_mini all" ], "development": [ "last 1 chrome version", "last 1 firefox version", "last 1 safari version" ] }, "proxy": "http://localhost:9010", "main": "index.js", "repository": { "type": "git", "url": "https://github.com/ademuk/testbook.git" }, "keywords": [ "react", "testing", "component-testing", "testing-tool" ], "author": "Adem Gaygusuz <adem@ardweb.co.uk> (https://adem .io)", "license": "MIT", "bugs": { "url": "https://github.com/ademuk/testbook/issues" }, "node": ">= 12.0.0", "files": [ "bin", "build", "server/build" ] }