-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
90 lines (90 loc) · 2.89 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "react-native-jigsaw",
"version": "0.0.0",
"private": true,
"description": "Root package.json for workspaces",
"license": "MIT",
"author": "Draftbit <[email protected]> (https://draftbit.com)",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"postinstall": "yarn-deduplicate && patch-package",
"example": "yarn --cwd example",
"example:web": "yarn example start -c --web",
"example:ios": "yarn example start -c --ios",
"example:android": "yarn example start -c --android",
"format": "prettier --write .",
"lint": "eslint \"**/*.{ts,tsx}\"",
"build": "lerna run build",
"test": "lerna run test --stream -- --passWithNoTests",
"release": "lerna publish",
"clean": "lerna run clean",
"clean:modules": "lerna run clean:modules && rm -rf node_modules",
"typescript": "tsc --composite false",
"version:expo": "lerna version major --no-push --exact --force-publish",
"version:major": "lerna version minor --no-push --exact --force-publish",
"version:minor": "lerna version patch --no-push --exact --force-publish",
"version:patch": "echo \"No patch versions: See root README.md\"",
"prepare": "husky",
"tsc": "echo 'You are trying to run \"tsc\" in the workspace root. Run it from an individual package instead.' && exit 1"
},
"workspaces": [
"example",
"packages/*"
],
"resolutions": {
"react-native-gesture-handler": "~2.16.1",
"prop-types": "^15.8.1",
"entities": "^2.0.0"
},
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@eslint/compat": "^1.2.3",
"@testing-library/jest-native": "^5.4.3",
"@testing-library/react-native": "^12.9.0",
"@types/jest": "^29.5.14",
"@types/react-test-renderer": "^18.3.0",
"babel-jest": "^29.7.0",
"dotenv": "^16.4.5",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-native": "^4.1.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-expo": "^51.0.0",
"lerna": "^8.1.9",
"lint-staged": "^15.2.10",
"patch-package": "^8.0.0",
"postinstall-postinstall": "^2.1.0",
"prettier": "^3.4.1",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "~5.7.2",
"typescript-eslint": "^8.16.0",
"utility-types": "^3.11.0",
"yarn-deduplicate": "^6.0.2"
},
"lint-staged": {
"*.{js,ts,tsx,jsx}": "eslint --cache --fix",
"*.{js,ts,tsx,json,mcss,md}": "prettier --write"
},
"browserslist": {
"browsers": [
"defaults",
"not dead",
"not ie <= 11",
"not op_mini all",
"not android <= 4.4",
"not samsung <= 4"
],
"node": "16"
}
}