forked from nativewind/nativewind
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.29 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "nativewind-monorepo",
"workspaces": [
"packages/*",
"apps/*",
"examples/*"
],
"scripts": {
"test": "turbo test --continue",
"snapshot": "npx changeset version --snapshot && npx changeset publish --tag snapshot && git restore .",
"build": "turbo run build --filter='./packages/*'",
"build:watch": "turbo run build:watch --filter='./packages/*'",
"dev": "npm_config_loglevel=silent turbo dev",
"example": "npm start --workspace=examples/expo-router --",
"clean": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' + && rm package-lock.json && npm i",
"publish-packages": "turbo run build lint test && changeset version && changeset publish",
"website": "vercel dev"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@tsconfig/react-native": "^3.0.2",
"@types/node": "18.16.19",
"@vercel/node": "^2.15.8",
"@welldone-software/why-did-you-render": "^7.0.1",
"eslint": "8.44.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-unicorn": "47.0.0",
"jest": "^29.3.1",
"jest-expo": "^50.0.1",
"prettier": "3.0.0",
"turbo": "^1.10.14",
"typescript": "^5.3.0",
"vercel": "^31.2.2"
},
"dependencies": {
"uuid": "^3.4.0"
},
"overrides": {
"react-refresh": "0.14.0"
}
}