-
-
Notifications
You must be signed in to change notification settings - Fork 328
/
package.json
118 lines (118 loc) · 3.48 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
{
"name": "react-native-reanimated-carousel",
"version": "4.0.0-canary.17",
"packageManager": "yarn@4.0.2",
"description": "Simple carousel component.fully implemented using Reanimated 2.Infinitely scrolling, very smooth.",
"author": "Doho <zhaodonghao586@outlook.com> (https://github.com/dohooo)",
"license": "MIT",
"homepage": "https://rn-carousel.dev/",
"repository": {
"type": "git",
"url": "git+https://github.com/dohooo/react-native-reanimated-carousel.git"
},
"bugs": {
"url": "https://github.com/dohooo/react-native-reanimated-carousel/issues"
},
"keywords": [
"react-native",
"ios",
"android"
],
"main": "lib/commonjs/index",
"module": "lib/module/index",
"react-native": "src/index.tsx",
"types": "lib/typescript/index.d.ts",
"source": "src/index",
"files": [
"lib",
"src"
],
"scripts": {
"gif": "node scripts/makegif.js ./scripts/gif-works-directory",
"test": "jest run src/**/*",
"test:dev": "jest dev src/**/* --watch",
"types": "tsc --noEmit",
"lint": "eslint 'src/**/*.{js,ts,tsx}'",
"lint:fix": "eslint 'src/**/*.{js,ts,tsx}' --fix",
"dev": "watch 'yarn prepare' ./src",
"prepare": "bob build",
"clean": "del-cli lib",
"version": "changeset version"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-native": ">=0.70.3",
"react-native-gesture-handler": ">=2.9.0",
"react-native-reanimated": ">=3.0.0"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-private-methods": "^7.18.6",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "latest",
"@commitlint/config-conventional": "^11.0.0",
"@dohooo/eslint-config": "^0.0.7",
"@react-native-community/eslint-config": "^2.0.0",
"@stylistic/eslint-plugin-js": "^1.8.0",
"@testing-library/jest-native": "^4.0.4",
"@testing-library/react-hooks": "^8.0.0",
"@testing-library/react-native": "^7.1.0",
"@types/jest": "^29.2.5",
"@types/react": "^18.2.15",
"@types/react-native": "^0.66.16",
"@types/react-test-renderer": "^18.0.7",
"@typescript-eslint/typescript-estree": "^8.4.0",
"babel-plugin-module-resolver": "^4.1.0",
"commitlint": "^11.0.0",
"cz-conventional-changelog": "^3.3.0",
"del-cli": "^5.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-prettier": "^3.1.3",
"gifify": "^2.4.3",
"husky": "^4.2.5",
"jest": "^29.3.1",
"metro-react-native-babel-preset": "^0.77.0",
"pod-install": "^0.1.0",
"prettier": "^2.0.5",
"react": "18.2.0",
"react-native": "0.74.5",
"react-native-builder-bob": "^0.18.1",
"react-native-gesture-handler": "~2.16.1",
"react-native-reanimated": "~3.10.1",
"react-native-web": "~0.19.10",
"react-test-renderer": "^18.2.0",
"sponsorkit": "^0.1.3",
"typescript": "^5.5.4",
"watch": "^1.0.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}