-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
94 lines (94 loc) · 2.2 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
{
"name": "reactigation",
"description": "React-only Navigation for React Native.",
"version": "0.0.0-development",
"repository": "github:tobua/reactigation",
"license": "MIT",
"author": "Matthias Giger",
"scripts": {
"app": "bun create-app.js",
"copy": "cpx '*.{ts,tsx}' app/node_modules/reactigation --watch",
"format": "prettier \"{,!(app|dist)/**/}*.{ts,tsx}\" --write",
"lint": "eslint . --fix --ext .ts,.tsx",
"test": "jest",
"types": "tsc && tsc --noEmit --project ./test/tsconfig.json"
},
"devDependencies": {
"@react-native-community/cli": "^14.1.1",
"@react-native/babel-preset": "^0.75.4",
"@react-native/eslint-config": "^0.75.4",
"@react-native/typescript-config": "^0.75.4",
"@types/bun": "^1.1.11",
"@types/jest": "^29.5.13",
"@types/node": "^22.7.5",
"@types/react": "^18.3.11",
"@types/react-native": "^0.73.0",
"@types/react-test-renderer": "^18.3.0",
"babel-jest": "^29.7.0",
"cpx": "^1.5.0",
"eslint": "8.57.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"react": "^18.3.1",
"react-native": "^0.75.4",
"react-test-renderer": "^18.3.1",
"typescript": "^5.6.3"
},
"peerDependencies": {
"react": ">= 18",
"react-native": ">= 0.70"
},
"type": "module",
"main": "./index.tsx",
"exports": {
".": "./index.tsx"
},
"types": "./index.tsx",
"files": [
"*.ts",
"*.tsx"
],
"keywords": [
"react-native",
"navigation",
"animation"
],
"prettier": {
"printWidth": 120,
"semi": false,
"singleQuote": true
},
"eslintConfig": {
"extends": "@react-native",
"rules": {
"semi": 0
},
"ignorePatterns": [
"app"
],
"root": true
},
"jest": {
"moduleFileExtensions": [
"js",
"ts",
"tsx"
],
"moduleNameMapper": {
"react-dom": "react-native",
"reactigation": "<rootDir>"
},
"preset": "react-native",
"testPathIgnorePatterns": [
"/app/"
],
"transformIgnorePatterns": [
"node_modules/(?!react-native|@react-native)"
]
},
"publishConfig": {
"provenance": true
}
}