-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
67 lines (67 loc) · 2.07 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
{
"name": "react-native-sortables-monorepo",
"version": "1.0.0",
"devDependencies": {
"@types/eslint": "^8.56.10",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.9",
"eslint": "^8.56.0",
"eslint-config-react-native-matipl01": "2.1.0",
"husky": "^9.1.4",
"lint-staged": "^15.2.7",
"prettier": "^3.3.2",
"syncpack": "^12.3.3",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write . --ignore-unknown",
"eslint --fix ."
],
"package.json": [
"syncpack format"
]
},
"packageManager": "yarn@4.3.1",
"private": true,
"resolutions": {
"typescript": "5.3.3"
},
"scripts": {
"build": "yarn workspace react-native-sortables build",
"clean": "yarn workspace react-native-sortables clean",
"docs": "cd packages/docs && yarn \"$@\" && cd ../..",
"example:app": "yarn workspace example-app",
"example:expo": "yarn workspace example-expo",
"example:fabric": "yarn workspace example-fabric",
"example:paper": "yarn workspace example-paper",
"example:web": "yarn workspace example-web",
"format": "yarn format:code && yarn format:deps",
"format:check": "prettier --check . --ignore-unknown",
"format:code": "prettier --write . --ignore-unknown",
"format:deps": "syncpack format",
"husky:install": "./scripts/husky.sh",
"lib": "yarn workspace react-native-sortables",
"lint": "yarn workspaces foreach -A -p run lint",
"lint:all": "yarn lint && yarn lint:docs",
"lint:docs": "cd packages/docs && yarn lint && cd ../..",
"pod": "yarn workspaces foreach -A -p run pod",
"postinstall": "yarn husky:install",
"prepare": "husky",
"test": "yarn lib test && yarn example:app test",
"typecheck": "yarn lib typecheck && yarn example:app typecheck"
},
"type": "module",
"workspaces": {
"packages": [
"example/app",
"example/fabric",
"example/paper",
"example/expo",
"example/web",
"packages/react-native-sortables"
]
}
}