Files
nativewind/package.json
2022-10-09 09:35:02 +10:00

28 lines
899 B
JSON

{
"name": "nativewind-monorepo",
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"test": "npm run test --workspace=nativewind --",
"test:babel": "npm run test --workspace=nativewind -- __tests__/babel",
"benchmarks": "npm run test --workspace=benchmarks --",
"build": "npm run build --workspace=nativewind --",
"example": "npm start --workspace=example --",
"clean": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' + && rm package-lock.json && npm i"
},
"devDependencies": {
"@changesets/cli": "2.24.4",
"@cspell/eslint-plugin": "6.10.1",
"@types/node": "^18.7.23",
"@typescript-eslint/eslint-plugin": "^5.39.0",
"@typescript-eslint/parser": "^5.39.0",
"eslint": "^8.24.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-unicorn": "43.0.2",
"prettier": "2.7.1",
"typescript": "^4.8.3"
}
}