-
Notifications
You must be signed in to change notification settings - Fork 121
/
package.json
63 lines (63 loc) · 2.54 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"private": true,
"workspaces": [
"packages/**",
"example/storybook",
"example/storybook-nativewind"
],
"name": "gluestack-ui",
"scripts": {
"test": "bash ./scripts/test.sh",
"dev": "turbo run dev",
"build:unstyled": "turbo run build --filter=./packages/unstyled/*",
"build": "turbo run build --filter=@gluestack-style/react --filter=@react-native-aria/* --no-cache && yarn build:rest",
"build:rest": "turbo run build --filter=@gluestack-ui/* --filter=@gluestack-style/* --filter=!@gluestack-ui/nativewind-utils --no-cache",
"clean": "turbo run clean",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\" --ignore-path .gitignore",
"release": "changeset publish",
"prepare": "husky install",
"lint": "eslint packages/**/**/src --ext .ts,.tsx --config .eslintrc",
"lint-nativewind": "eslint example/storybook-nativewind/src/core-components --ext .ts,.tsx --config .eslintrc",
"eject:gluestack-style": "git clone -b development [email protected]:gluestack/gluestack-style.git gluestack-style && echo Now update babel.config.js",
"create-new-package": "node ./scripts/create-new-package.js",
"storybook": "cd example/storybook && yarn storybook",
"storybook:nativewind": "cd example/storybook-nativewind && yarn storybook:nativewind",
"storybook:nativewind-ios": "cd example/storybook-v7 && yarn storybook:ios",
"storybook:nativewind-android": "cd example/storybook-v7 && yarn storybook:android",
"kitchensink:web": "cd example/ui-examples && yarn web",
"postinstall": "cd example/storybook-v7 && yarn"
},
"devDependencies": {
"@changesets/cli": "^2.25.2",
"@commitlint/config-conventional": "^17.3.0",
"@jest/create-cache-key-function": "^29.6.3",
"@react-native-community/eslint-config": "^3.2.0",
"@testing-library/react-native": "^12.0.1",
"@types/react": "^18.0.28",
"babel-jest": "^29.5.0",
"commitlint": "^17.3.0",
"eslint": "^8.29.0",
"eslint-plugin-ft-flow": "^2.0.3",
"fs-extra": "^11.1.0",
"husky": "^8.0.2",
"jest": "^29.5.0",
"jest-junit": "^15.0.0",
"lint-staged": "^13.1.0",
"prettier": "^2.7.1",
"react-test-renderer": "^18.2.0",
"release-it": "^15.5.1",
"ts-node": "^10.9.1",
"tsc-files": "^1.1.3",
"turbo": "^1.13.3",
"typescript": "5.1.6"
},
"resolutions": {
"react-native": "0.72.4",
"react-native-web": "0.19.9",
"react-native-css-interop": "0.1.22",
"nativewind": "4.1.23"
},
"dependencies": {},
"packageManager": "[email protected]",
"version": "0.2.46"
}