-
Notifications
You must be signed in to change notification settings - Fork 3k
/
package.json
113 lines (113 loc) Β· 3.42 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "react-native-calendars",
"version": "1.22.0",
"main": "src/index.ts",
"types": "src/index.d.ts",
"description": "React Native Calendar Components",
"scripts": {
"build": "xcodebuild -project ios/CalendarsExample.xcodeproj build",
"build:ts": "tsc",
"build:dev": "tsc --noEmit",
"build:docs": "node ./scripts/build-docs.js",
"e2e": "node ./scripts/test-e2e.js --release",
"test": "yarn lint && yarn unit",
"test:watch": "jest --watch",
"test:perf": "TEST_RUNNER_ARGS='--testMatch **/*.perf.js' reassure measure",
"unit": "jest",
"lint": "eslint src/ example/src --ext .tsx,.ts,.js",
"release": "node ./scripts/release.js",
"start": "react-native start",
"ios": "react-native run-ios",
"android": "react-native run-android",
"xcode": "open ios/CalendarsExample.xcworkspace/",
"clean": "rm yarn-lock && rm -rf ./node_modules && yarn",
"pod-install": "pod install --project-directory=ios"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wix/react-native-calendars"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"author": "Wix.com",
"license": "MIT",
"dependencies": {
"hoist-non-react-statics": "^3.3.1",
"lodash": "^4.17.15",
"memoize-one": "^5.2.1",
"prop-types": "^15.5.10",
"react-native-swipe-gestures": "^1.0.5",
"recyclerlistview": "^4.0.0",
"xdate": "^0.8.0"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/eslint-parser": "^7.13.4",
"@babel/preset-env": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@react-native-community/eslint-config": "^3.2.0",
"@testing-library/react-native": "^11.0.0",
"@tsconfig/docusaurus": "^1.0.4",
"@tsconfig/react-native": "^2.0.2",
"@types/jest": "^29.2.1",
"@types/lodash": "^4.14.170",
"@types/react": "^18.0.24",
"@types/react-test-renderer": "^18.0.0",
"@types/react-native": "^0.64.19",
"@types/xdate": "^0.8.32",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"@welldone-software/why-did-you-render": "^6.0.3",
"babel-eslint": "^10.1.0",
"babel-jest": "^29.2.1",
"detox": "^18.0.0",
"eslint": "^8.19.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jest": "^26.0.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-react-native": "^4.0.0",
"husky": "^4.2.5",
"jest": "^29.2.1",
"jest-date-mock": "^1.0.8",
"lint-staged": "^10.2.11",
"metro-react-native-babel-preset": "0.73.7",
"mocha": "^7.1.0",
"prettier": "^2.4.1",
"react": "18.2.0",
"react-component-driver": "^0.10.0",
"react-native": "0.71.2",
"react-native-navigation": "7.32.1",
"react-recipes": "^1.4.0",
"react-test-renderer": "18.2.0",
"reassure": "^0.4.1",
"semver": "5.x.x",
"shell-utils": "1.x.x",
"typescript": "4.8.4"
},
"optionalDependencies": {
"moment": "^2.29.4"
},
"jest": {
"preset": "react-native",
"setupFiles": [
"jest-date-mock",
"./jest-setup.js"
],
"testMatch": [
"<rootDir>/src/**/?(*.)(spec|test).{js,jsx,ts}"
],
"transformIgnorePatterns": [
"node_modules/(?!(@react-native|react-native|react-native-swipe-gestures)/)"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
}
}