mirror of
https://github.com/zhigang1992/nativewind.git
synced 2026-01-12 22:49:13 +08:00
25 lines
762 B
JSON
25 lines
762 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.25.2",
|
|
"@types/node": "18.11.9",
|
|
"eslint": "8.27.0",
|
|
"eslint-config-prettier": "8.5.0",
|
|
"eslint-plugin-unicorn": "44.0.2",
|
|
"prettier": "2.7.1",
|
|
"typescript": "4.8.4"
|
|
}
|
|
}
|