-
Notifications
You must be signed in to change notification settings - Fork 224
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.75 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.75 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
{
"private": true,
"workspaces": [
"packages/*",
"docs"
],
"author": "Satyajit Sahoo <satyajit.happy@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/react-navigation/react-navigation.git"
},
"scripts": {
"lint": "eslint \"**/*.{js,ts,tsx}\"",
"typecheck": "tsc --build",
"watch": "concurrently 'yarn typecheck --watch' 'lerna run --parallel prepare -- --watch'",
"test": "yarn workspace react-native-builder-bob test",
"docs": "yarn workspace docs",
"release": "lerna publish"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.0.2",
"@eslint/compat": "^1.2.7",
"@eslint/eslintrc": "^3.3.0",
"@eslint/js": "^9.22.0",
"@evilmartians/lefthook": "^1.5.0",
"@lerna-lite/cli": "^4.11.0",
"@lerna-lite/publish": "^4.11.1",
"@lerna-lite/run": "^4.11.1",
"@vitest/eslint-plugin": "^1.1.39",
"commitlint": "^17.0.2",
"concurrently": "^7.2.2",
"eslint": "^9.26.0",
"eslint-config-satya164": "^5.1.1",
"globals": "^16.0.0",
"prettier": "^3.5.3",
"typescript": "^5.8.3"
},
"resolutions": {
"@rspress/plugin-llms@2.0.0-beta.34": "patch:@rspress/plugin-llms@npm%3A2.0.0-beta.34#./.yarn/patches/@rspress-plugin-llms-npm-2.0.0-beta.34-d374542281.patch"
},
"packageManager": "yarn@4.11.0",
"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
}
}