-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
119 lines (119 loc) · 2.81 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
114
115
116
117
118
119
{
"name": "agenda-react-native",
"version": "1.1.2",
"description": "React Native Agenda",
"main": "lib/commonjs/index.js",
"react-native": "lib/module/index.js",
"source": "src/index.tsx",
"module": "lib/module/index.js",
"types": "lib/typescript/src/index.d.ts",
"files": [
"lib",
"babel.js"
],
"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/agenda-react-native.git"
},
"keywords": [
"react-native",
"agenda",
"month",
"calendar"
],
"author": "Alejandro Maggi",
"license": "MIT",
"bugs": {
"url": "https://github.com/maggialejandro/agenda-react-native/issues"
},
"homepage": "https://github.com/maggialejandro/agenda-react-native#readme",
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@babel/core": "^7.19.1",
"@babel/preset-typescript": "^7.18.6",
"@babel/runtime": "^7.19.0",
"@react-native-community/eslint-config": "^3.1.0",
"@testing-library/jest-native": "^5.1.2",
"@testing-library/react-native": "^11.3.0",
"@types/jest": "^28.1.8",
"@types/react-native": "^0.69.15",
"@types/react-test-renderer": "18.0.0",
"babel-eslint": "10.1.0",
"babel-jest": "^28.1.3",
"babel-test": "0.2.4",
"eslint": "8.26.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"husky": "4.3.0",
"jest": "^28.1.3",
"prettier": "2.7.1",
"react": "18.0.0",
"react-dom": "18.0.0",
"react-native": "^0.69.6",
"react-native-builder-bob": "^0.18.3",
"react-test-renderer": "18.0.0",
"ts-jest": "^28.0.8",
"typescript": "~4.3.5"
},
"babel": {
"presets": [
"module:metro-react-native-babel-preset"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn lint && yarn typescript && yarn test"
}
},
"jest": {
"preset": "react-native",
"setupFilesAfterEnv": [
"@testing-library/jest-native/extend-expect"
],
"testMatch": [
"**/__tests__/**/*.+(ts|tsx|js)",
"**/?(*.)+(spec|test).+(ts|tsx|js)"
],
"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/"
]
},
"dependencies": {
"dayjs": "^1.11.5",
"react-native-month": "^1.5.2"
}
}