-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.04 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.04 KB
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
{
"version": "0.1.9",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"scripts": {
"start": "tsdx watch -outDir=example/test",
"build": "tsdx build",
"builddev": "tsdx build && rm -rf example/react-native-step-navigation && mv dist example/react-native-step-navigation",
"dev": "npm run dist -- -w",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint",
"prepare": "tsdx build",
"size": "size-limit",
"analyze": "size-limit --why",
"deploy": "npm version patch && npm publish"
},
"peerDependencies": {
"react": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"name": "react-native-step-navigation",
"author": "Igor Ulian",
"module": "dist/react-native-step-navigation.esm.js",
"size-limit": [
{
"path": "dist/react-native-step-navigation.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/react-native-step-navigation.esm.js",
"limit": "10 KB"
}
],
"devDependencies": {
"@size-limit/preset-small-lib": "^8.2.4",
"@types/react": "^18.2.8",
"@types/react-native": "^0.72.2",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"eslint": "^8.42.0",
"eslint-config-standard-with-typescript": "^35.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"husky": "^8.0.3",
"prettier": "^2.8.8",
"react": "^18.2.0",
"react-native": "^0.71.8",
"size-limit": "^8.2.4",
"tsdx": "^0.14.1",
"tslib": "^2.5.3",
"typescript": "^5.1.3"
},
"dependencies": {
"@react-navigation/native": "^6.1.6",
"@react-navigation/stack": "^6.3.16",
"react-native-safe-area-context": "^4.5.3",
"react-native-screens": "^3.20.0",
"react-native-svg": "^13.9.0"
}
}