Files
introduction-to-testing/examples/directory/package.json
2024-10-02 08:41:56 -05:00

36 lines
973 B
JSON

{
"name": "directory",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"start": "vite dev",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stevekinney/testing-javascript.git"
},
"author": "Steve Kinney <hello@stevekinney.net>",
"license": "MIT",
"bugs": {
"url": "https://github.com/stevekinney/testing-javascript/issues"
},
"homepage": "https://github.com/stevekinney/testing-javascript#readme",
"devDependencies": {
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@types/body-parser": "^1.19.5",
"@types/express": "^4.17.21",
"@types/react": "^18.3.6",
"@types/react-dom": "^18.3.0",
"@types/testing-library__jest-dom": "^5.14.9",
"@vitejs/plugin-react": "^4.3.1",
"@vitest/ui": "^2.1.1",
"msw": "^2.4.9",
"vite": "^5.4.6",
"vitest": "^2.1.1"
}
}