Files
react/compiler/packages/fixture-test-utils/package.json
Lauren Tan c72673bd8f [fixtures] Run prettier after babel-plugin
This moves prettier formatting into fixture-test-utils instead, so we can remove 
the dependency on prettier in the babel plugin. I want to do this because I 
don't want to include prettier in the rolledup artifact when we build the babel 
plugin.
2023-10-27 14:07:55 -04:00

26 lines
584 B
JSON

{
"name": "fixture-test-utils",
"version": "1.0.0",
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"build": "rimraf dist && tsc",
"test": "echo 'no tests'",
"prettier": "prettier --write src"
},
"dependencies": {
"@parcel/watcher": "^2.1.0",
"chalk": "4",
"prettier": "2.8.8",
"readline": "^1.3.0",
"typescript": "^5.1.0",
"yargs": "^17.7.1"
},
"devDependencies": {
"@types/node": "^18.7.18",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"rimraf": "^3.0.2"
}
}