forked from callstackincubator/rozenite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.74 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.74 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
75
76
77
78
79
80
81
82
{
"name": "rozenite-monorepository",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"prepare": "husky",
"build:all": "nx run-many -t build",
"typecheck:all": "nx run-many -t typecheck",
"lint:all": "nx run-many -t lint",
"format:all": "prettier --check .",
"format:all:fix": "prettier . --write",
"checks:all": "pnpm typecheck:all && pnpm lint:all && pnpm format:all",
"release:plan": "nx release plan",
"start:playground": "nx run playground:start",
"start:playground:android": "nx run playground:run-android",
"start:playground:ios": "nx run playground:run-ios"
},
"private": true,
"devDependencies": {
"@babel/core": "^7.14.5",
"@babel/preset-react": "^7.14.5",
"@babel/runtime": "~7.26.0",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@eslint/js": "^9.8.0",
"@nx/eslint": "21.2.1",
"@nx/eslint-plugin": "21.2.1",
"@nx/js": "21.2.1",
"@nx/react-native": "21.2.1",
"@nx/vite": "21.2.1",
"@nx/web": "21.2.1",
"@react-native-community/cli": "~15.0.1",
"@react-native-community/cli-platform-android": "~15.0.1",
"@react-native-community/cli-platform-ios": "~15.0.1",
"@react-native/babel-preset": "~0.76.3",
"@react-native/codegen": "0.76.0",
"@react-native/gradle-plugin": "0.76.0",
"@react-native/metro-config": "~0.76.3",
"@swc-node/register": "~1.9.1",
"@swc/core": "~1.5.7",
"@swc/helpers": "~0.5.11",
"@testing-library/jest-native": "~5.4.3",
"@testing-library/react-native": "~12.9.0",
"@types/node": "18.16.9",
"@types/react": "~18.3.23",
"@types/react-dom": "~18.3.1",
"@vitejs/plugin-react": "^4.2.0",
"@vitest/ui": "^3.0.0",
"dts-bundle-generator": "^9.5.1",
"eslint": "^9.8.0",
"eslint-config-prettier": "^10.0.0",
"husky": "^9.1.7",
"jest-react-native": "18.0.0",
"jiti": "2.4.2",
"jsdom": "~22.1.0",
"jsonc-eslint-parser": "^2.1.0",
"lint-staged": "^16.1.2",
"nx": "21.2.1",
"prettier": "^3.6.2",
"react-native-svg": "~15.8.0",
"react-native-svg-transformer": "~1.5.0",
"react-native-svg-web": "~1.0.9",
"react-native-web": "~0.19.13",
"react-test-renderer": "~18.3.1",
"tslib": "^2.3.0",
"typescript": "~5.8.2",
"typescript-eslint": "^8.29.0",
"vite": "^6.0.0",
"vite-plugin-dts": "~4.5.0",
"vitest": "^3.0.0"
},
"packageManager": "pnpm@10.22.0+sha512.bf049efe995b28f527fd2b41ae0474ce29186f7edcb3bf545087bd61fbbebb2bf75362d1307fda09c2d288e1e499787ac12d4fcb617a974718a6051f2eee741c",
"dependencies": {
"react": "~18.3.1",
"react-dom": "~18.3.1",
"react-native": "0.76.0"
},
"resolutions": {
"@microsoft/api-extractor": "7.48.1",
"react-native": "0.76.0"
}
}