-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathpackage.json
112 lines (112 loc) · 2.67 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
{
"name": "react-native-calendario",
"version": "3.5.2",
"description": "React Native Calendar",
"main": "lib/commonjs/index.js",
"react-native": "src/index.tsx",
"source": "src/index.tsx",
"module": "lib/module/index.js",
"types": "lib/typescript/src/index.d.ts",
"files": [
"lib",
"src"
],
"scripts": {
"typescript": "tsc --noEmit",
"lint": "eslint --ext .ts,.tsx src/",
"test": "jest",
"prepublish": "npm run test",
"prepare": "bob build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maggialejandro/react-native-calendario.git"
},
"keywords": [
"react-native",
"calendar"
],
"author": "Alejandro Maggi",
"license": "MIT",
"bugs": {
"url": "https://github.com/maggialejandro/react-native-calendario/issues"
},
"homepage": "https://github.com/maggialejandro/react-native-calendario#readme",
"dependencies": {
"moment": "2.30.1",
"react-native-month": "1.6.3"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@react-native-community/eslint-config": "3.2.0",
"@testing-library/react-hooks": "7.0.2",
"@types/jest": "^28.1.8",
"@types/react": "~18.0.38",
"@types/react-native": "^0.69.26",
"@types/react-test-renderer": "^18.0.0",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "^28.1.3",
"babel-test": "0.2.4",
"eslint": "8.27.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "4.3.0",
"jest": "^28.1.3",
"metro-react-native-babel-preset": "0.56.0",
"prettier": "2.1.2",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-native": "0.70.5",
"react-native-builder-bob": "0.18.3",
"react-test-renderer": "18.0.0",
"ts-jest": "^28.0.8",
"typescript": "~4.8.4"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && yarn typescript && yarn test"
}
},
"jest": {
"preset": "react-native",
"testMatch": [
"**/__tests__/**/*.+(ts|tsx|js)",
"**/?(*.)+(spec|test).+(ts|tsx|js)"
],
"transform": {
".+\\.(ts|tsx)$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json",
"jsx",
"node"
],
"modulePathIgnorePatterns": [
"<rootDir>/example/node_modules",
"<rootDir>/lib/"
],
"watchPathIgnorePatterns": [
"__fixtures__\\/[/]+\\/(output|error)\\.js"
]
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
],
"files": [
"src/"
]
}
}