forked from gluestack/gluestack-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.53 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
{
"private": true,
"workspaces": [
"packages/themed",
"packages/config",
"example/storybook",
"example/apps/*"
],
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build --filter=@gluestack-ui* --no-cache",
"test": "jest",
"clean": "turbo run clean && rm -rf node_modules",
"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",
"eject:gluestack-style": "git clone -b development git@github.com: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"
},
"devDependencies": {
"@changesets/cli": "^2.25.2",
"@commitlint/config-conventional": "^17.3.0",
"@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": "latest",
"typescript": "5.1.6"
},
"packageManager": "yarn@1.22.17"
}