forked from callstack/react-native-builder-bob
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.38 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
{
"private": true,
"workspaces": [
"packages/*",
"docs"
],
"author": "Satyajit Sahoo <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/react-navigation/react-navigation.git"
},
"packageManager": "[email protected]",
"engines": {
"node": ">= 18.0.0"
},
"scripts": {
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"typecheck": "tsc --noEmit",
"watch": "concurrently 'yarn typecheck --watch' 'lerna run --parallel prepare -- --watch'",
"test": "yarn workspace react-native-builder-bob test",
"docs": "yarn workspace docs"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.0.2",
"@evilmartians/lefthook": "^1.5.0",
"@lerna-lite/cli": "^1.13.0",
"@lerna-lite/run": "^1.13.0",
"commitlint": "^17.0.2",
"concurrently": "^7.2.2",
"eslint": "^8.52.0",
"eslint-config-satya164": "^3.2.0",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"eslintConfig": {
"extends": "satya164",
"root": true,
"env": {
"node": true
}
},
"eslintIgnore": [
"node_modules/",
"coverage/",
"lib/",
"templates/",
"__fixtures__/"
],
"prettier": {
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
}
}