-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
86 lines (86 loc) · 2.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
{
"name": "react-native-karte",
"description": "KARTE SDK for React Native.",
"private": true,
"workspaces": {
"packages": [
"packages/*",
"example"
],
"nohoist": [
"**/react-native",
"**/react-native/**"
]
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/plaidev/karte-react-native.git"
},
"author": "PLAID, Inc.",
"scripts": {
"prepare": "lerna run prepare",
"bootstrap": "lerna bootstrap",
"clean": "lerna clean",
"versionup": "lerna version --conventional-commits --no-commit-hooks",
"versionup:patch": "lerna version patch --conventional-commits --no-commit-hooks",
"versionup:minor": "lerna version minor --conventional-commits --no-commit-hooks",
"versionup:major": "lerna version major --conventional-commits --no-commit-hooks",
"release": "lerna publish from-package",
"release:canary": "lerna publish --canary",
"typecheck": "tsc --noEmit --composite false",
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"format": "eslint \"**/*.{js,ts,tsx}\" --fix",
"example": "yarn --cwd example",
"example:pods": "cd example && pod-install --quite",
"docs": "lerna run docs",
"docs:clean": "lerna run docs:clean",
"docs:publish": "yarn docs && ts-node scripts/publish-docs.ts",
"test": "jest"
},
"devDependencies": {
"@commitlint/config-conventional": "^9.1.1",
"@react-native-community/eslint-config": "^3.1.0",
"@types/jest": "^29.1.2",
"@types/react": "^18.0.0",
"@types/react-native": "^0.70.4",
"commitlint": "^12.1.4",
"compare-versions": "^3.6.0",
"eslint": "^8.25.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"exit-hook": "^2.2.1",
"fs-extra": "^9.1.0",
"genversion": "^2.2.1",
"husky": "^4.2.5",
"jest": "^26.6.3",
"lerna": "^4.0.0",
"metro-react-native-babel-preset": "^0.73.2",
"pod-install": "^0.1.8",
"prettier": "^2.0.5",
"react": "^18.2.0",
"react-native": "^0.70.3",
"ts-jest": "^26.5.4",
"ts-node": "^10.9.1",
"typedoc": "^0.23.17",
"typescript": "^4.8.4"
},
"jest": {
"projects": [
"<rootDir>/packages/*"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "yarn lint && yarn typecheck"
}
},
"prettier": {
"quoteProps": "consistent",
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
}
}