This repository was archived by the owner on Feb 23, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.35 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.35 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
{
"name": "react-native-esbuild",
"private": true,
"workspaces": [
"docs",
"example",
"packages/*"
],
"installConfig": {
"hoistingLimits": "workspaces"
},
"scripts": {
"prepare": "husky install",
"build:all": "nx run-many --target=build",
"typecheck:all": "nx run-many --target=typecheck",
"test": "jest",
"test:coverage": "jest --coverage --json --outputFile=coverage/report.json",
"lint": "eslint packages",
"example": "yarn --cwd example",
"release": "nx release",
"clean": "rimraf --glob \"packages/**/*/dist\" .nx"
},
"devDependencies": {
"@faker-js/faker": "^9.8.0",
"@nx/js": "^21.1.2",
"@swc/core": "^1.11.29",
"@swc/jest": "^0.2.38",
"@types/invariant": "^2.2.37",
"@types/jest": "^29.5.14",
"@types/node": "^22",
"@vercel/style-guide": "^5",
"esbuild": "^0.25.5",
"eslint": "^8.49.0",
"eslint-plugin-prettier": "^5.4.1",
"husky": "^9.1.7",
"jest": "^29.7.0",
"node-self": "^1.0.2",
"nx": "^21.1.2",
"prettier": "^3.5.3",
"react-native": "0.72.6",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"prettier": "@vercel/style-guide/prettier",
"packageManager": "yarn@4.9.1",
"resolutions": {
"dripsy@^4.3.8": "patch:dripsy@npm%3A4.3.8#./.yarn/patches/dripsy-npm-4.3.8-208587309d.patch"
}
}