forked from software-mansion/react-native-reanimated
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.94 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.94 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
{
"name": "react-native-reanimated-monorepo",
"version": "0.0.0",
"packageManager": "yarn@4.1.1",
"workspaces": {
"packages": [
"packages/react-native-reanimated",
"packages/eslint-plugin-reanimated",
"packages/react-native-worklets/plugin",
"packages/react-native-worklets",
"docs/docs-reanimated",
"docs/docs-worklets",
"apps/common-app",
"apps/fabric-example",
"apps/macos-example",
"apps/tvos-example",
"apps/web-example",
"apps/next-example"
]
},
"private": true,
"scripts": {
"build": "husky && yarn build-packages",
"build-packages": "yarn workspace react-native-reanimated build",
"build-all": "husky && yarn workspaces foreach --all --parallel --topological-dev run build",
"format": "yarn format:root && yarn format:workspaces",
"format:root": "prettier --cache --write --list-different --ignore-path .gitignore --ignore-path .prettierignore --ignore-path .prettiereslintignore .",
"format:workspaces": "yarn workspaces foreach --all --exclude \"react-native-reanimated-monorepo\" --parallel --topological-dev run format",
"lint": "yarn lint:root && yarn lint:workspaces",
"lint:workspaces": "yarn workspaces foreach --all --exclude \"react-native-reanimated-monorepo\" --parallel --topological-dev run lint",
"lint:root": "eslint . --ignore-pattern 'packages/**' --ignore-pattern 'apps/**' --ignore-pattern 'docs/**' && yarn prettier --check --ignore-path .gitignore --ignore-path .prettierignore --ignore-path .prettiereslintignore ."
},
"devDependencies": {
"@babel/core": "7.28.4",
"@eslint/compat": "1.3.1",
"@types/node": "24.0.14",
"@types/shelljs": "0.8.17",
"@typescript-eslint/parser": "8.46.0",
"babel-eslint": "10.1.0",
"babel-plugin-module-resolver": "5.0.2",
"clang-format-node": "1.3.5",
"eslint": "9.37.0",
"eslint-config-prettier": "10.1.5",
"eslint-import-resolver-babel-module": "5.3.2",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jest": "29.0.1",
"eslint-plugin-jsdoc": "51.4.0",
"eslint-plugin-mdx": "2.2.0",
"eslint-plugin-n": "17.21.0",
"eslint-plugin-no-inline-styles": "1.0.5",
"eslint-plugin-no-relative-import-paths": "1.6.1",
"eslint-plugin-perfectionist": "4.15.0",
"eslint-plugin-prettier": "5.5.4",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "5.2.0",
"eslint-plugin-react-native": "5.0.0",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-tsdoc": "0.4.0",
"eslint-plugin-unused-imports": "4.2.0",
"husky": "9.1.7",
"jest": "30.2.0",
"knip": "5.61.3",
"lint-staged": "16.1.2",
"madge": "8.0.0",
"node-fetch": "3.3.2",
"prettier": "3.6.2",
"prettier-plugin-jsdoc": "1.3.3",
"react-native-builder-bob": "0.40.13",
"shelljs": "0.10.0",
"typescript": "5.8.3"
}
}