forked from birdwingo/react-native-instagram-stories
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.39 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
{
"name": "@pixelfed/react-native-stories",
"version": "1.3.0",
"description": "A versatile and captivating React Native component that empowers developers to seamlessly integrate ephemeral stories into their mobile applications, fostering an engaging and interactive user experience.",
"main": "src/index.tsx",
"source": "src/index.tsx",
"scripts": {
"prepare": "husky install",
"build": "tsc -p tsconfig.json",
"release": "standard-version",
"lint": "npx @biomejs/biome check --write ./src",
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pixelfed/react-native-stories.git"
},
"keywords": [
"pixelfed",
"react-native",
"android",
"ios",
"react",
"react-native-reanimated",
"reanimated",
"animated",
"animation",
"stories",
"story"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/pixelfed/react-native-stories/issues"
},
"homepage": "https://github.com/pixelfed/react-native-stories#readme",
"peerDependencies": {
"react": ">=18.0.0",
"react-native": ">=0.70.0",
"react-native-gesture-handler": ">=2.10.0",
"react-native-reanimated": ">=2.12.0",
"react-native-svg": ">=13.6.0"
},
"devDependencies": {
"@babel/preset-env": "^7.22.9",
"@babel/preset-typescript": "^7.22.5",
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"@testing-library/jest-native": "^5.4.2",
"@testing-library/react-native": "^12.1.3",
"@tsconfig/react-native": "^3.0.0",
"@types/jest": "^29.5.3",
"@types/react": "^18.2.16",
"eslint": "^8.19.0",
"eslint-config-airbnb": "^19.0.2",
"eslint-config-airbnb-typescript": "^16.1.0",
"husky": "^8.0.3",
"jest": "^29.6.2",
"react-native-mmkv": "^2.12.2",
"react-native-video": "^5.2.1",
"react-test-renderer": "^18.2.0",
"standard-version": "^9.5.0",
"typescript": "^5.1.6"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"testMatch": [
"<rootDir>/tests/*.test.js"
],
"setupFilesAfterEnv": [
"@testing-library/jest-native/extend-expect",
"<rootDir>/jest.setup.js"
],
"setupFiles": [
"./node_modules/react-native-gesture-handler/jestSetup.js"
],
"verbose": true
}
}