-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.32 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.32 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
{
"name": "react-native-gesture-handler-monorepo",
"version": "0.0.0",
"private": true,
"workspaces": [
"packages/react-native-gesture-handler",
"apps/basic-example",
"apps/expo-example",
"apps/macos-example",
"apps/common-app"
],
"scripts": {
"postinstall": "yarn build",
"build": "husky install && yarn workspaces foreach --all --parallel --topological-dev run build",
"ts-check": "yarn workspaces foreach --all --parallel --topological-dev run ts-check",
"lint-js": "yarn workspaces foreach --all --parallel --topological-dev run lint-js",
"format-js": "yarn workspaces foreach --all --parallel --topological-dev run format-js",
"clean": "yarn workspaces foreach --all --parallel --topological-dev run clean && rm -rf node_modules yarn.lock"
},
"devDependencies": {
"@types/react": "^19.0.12",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"eslint": "^8.57.0",
"eslint-config-satya164": "3.3.0",
"eslint-import-resolver-babel-module": "^5.2.0",
"eslint-plugin-jest": "27.4.3",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.37.5",
"husky": "^8.0.1",
"jest": "^28.1.0",
"lint-staged": "^12.3.2",
"prettier": "3.3.3",
"typescript": "~5.8.3"
},
"packageManager": "yarn@4.13.0"
}