-
Notifications
You must be signed in to change notification settings - Fork 752
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.65 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.65 KB
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
64
65
66
67
{
"name": "react-native-ui-lib-components",
"private": true,
"homepage": "https://github.com/wix/react-native-ui-lib",
"author": "Ethan Sharabi <ethan.shar@gmail.com>",
"license": "MIT",
"scripts": {
"start": "yarn workspace react-native-ui-lib start",
"pod-install": "yarn workspace react-native-ui-lib pod-install",
"ios": "yarn workspace react-native-ui-lib ios",
"android": "yarn workspace react-native-ui-lib android",
"iPad": "yarn workspace react-native-ui-lib iPad",
"test": "yarn lint && yarn workspace react-native-ui-lib test",
"lint": "eslint packages -c .eslintrc.js --ext .tsx,.ts,.js",
"lint:fix": "eslint packages -c .eslintrc.js --fix",
"build:dev": "tsc --p tsconfig.dev.json",
"pre-push": "yarn build:dev && yarn test",
"prepush": "node ./scripts/prepush.js",
"build": "yarn workspace react-native-ui-lib build",
"build:local": "yarn workspace react-native-ui-lib build:local",
"updateWebAssets": "node scripts/updateWebAssets.js",
"calendar:createMocks": "node scripts/createCalendarMockData.js",
"start:web": "npm --prefix webDemo run start",
"docs:deploy": "./scripts/docs/deployDocs.sh",
"docs:build": "node scripts/docs/buildDocs.js",
"docs:start": "(cd docuilib && yarn start)",
"release": "./scripts/release/releaseUiLib.sh",
"releaseDemo": "./scripts/release/releaseDemo.sh",
"releaseDocs": "./scripts/release/releaseDocs.sh",
"releaseEslint": "./scripts/release/releaseEslint.sh",
"releaseNative": "./scripts/release/releaseNative.sh"
},
"workspaces": {
"packages": [
"packages/*"
]
},
"devDependencies": {
"@react-native/eslint-config": "0.77.3",
"@react-native/metro-config": "0.77.3",
"@react-native/typescript-config": "0.77.3",
"@shopify/flash-list": "1.7.6",
"@testing-library/react-native": "12.9.0",
"@types/hoist-non-react-statics": "^3.3.1",
"@types/jest": "^29.5.13",
"@types/lodash": "^4.0.0",
"@types/prop-types": "^15.5.3",
"@types/react": "18.3.24",
"@types/react-test-renderer": "^18.3.0",
"@types/tinycolor2": "^1.4.2",
"@types/url-parse": "^1.4.3",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@welldone-software/why-did-you-render": "^3.2.1",
"@yarnpkg/types": "^4.0.1",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-module-resolver": "^5.0.0",
"chalk": "^4.1.2",
"eslint": "8.57.1",
"eslint-config-wix": "2.0.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-hooks": "^4.0.4",
"eslint-plugin-react-native": "^4.0.0",
"prettier-eslint": "16.3.0",
"typescript": "5.0.4"
}
}