This repository has been archived by the owner on Jul 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
45 lines (45 loc) · 1.59 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
42
43
44
45
{
"description": "Styling library for React Native",
"license": "MIT",
"version": "0.0.3",
"private": "true",
"workspaces": {
"packages": [
"packages/*"
]
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@svitejs/changesets-changelog-github-compact": "^0.1.1",
"@testing-library/react-hooks": "^8.0.0",
"@testing-library/react-native": "^9.1.0",
"@types/react": "^18.0.12",
"@types/react-native": "^0.67.8",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"concurrently": "^7.2.2",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.6.2",
"react": "^18.1.0",
"react-native": "^0.68.2",
"react-test-renderer": "^18.2.0",
"typescript": "^4.7.3",
"vitest": "^0.14.2"
},
"scripts": {
"dev:core": "yarn workspace react-native-zephyr run dev",
"dev:sample": "yarn workspace react-native-zephyr-sample run start",
"dev": "concurrently -c blue,red \"yarn run dev:core\" \"yarn run dev:sample\"",
"typecheck": "tsc --noEmit",
"lint": "eslint packages --quiet",
"test": "vitest run",
"check:ci": "yarn build:core && yarn typecheck && yarn lint && yarn test",
"test:watch": "vitest",
"version": "yarn workspace react-native-zephyr version --new-version $npm_pacakge_version",
"publish:core": "yarn workspace react-native-zephyr publish",
"publish:core:beta": "yarn workspace react-native-zephyr publish --tag beta",
"build:core": "yarn workspace react-native-zephyr run build"
}
}