-
-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
164 lines (164 loc) Β· 6.91 KB
/
Copy pathpackage.json
File metadata and controls
164 lines (164 loc) Β· 6.91 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
{
"name": "myapp",
"version": "0.0.1",
"private": true,
"scripts": {
"setup": "allow-scripts && yarn setup:gems",
"setup:gems": "bundle config set --local path 'vendor/bundle' && bundle config set --local force_ruby_platform true",
"allow:auto": "allow-scripts auto",
"start": "react-native start",
"start:reset": "react-native start --reset-cache",
"watchman:reset": "watchman watch-del-all && watchman shutdown-server",
"android": "react-native run-android --active-arch-only",
"android:release": "react-native run-android --active-arch-only --mode release",
"android:prod": "yarn gradle:clean && react-native run-android --mode release",
"gradle:clean": "(cd android && ./gradlew clean)",
"gems": "bundle install",
"gems:frozen": "BUNDLE_DEPLOYMENT=true yarn gems",
"gems:refresh": "rm -rf vendor/bundle Gemfile.lock && yarn gems",
"pod": "cd ios && bundle exec pod",
"pods": "yarn pod install",
"pods:frozen": "yarn pods --deployment",
"pods:clean": "rm -rf ios/Pods && yarn pods",
"pods:refresh": "rm -rf ios/Pods ios/Podfile.lock && yarn pods",
"install:ios": "(bundle check || yarn gems) && yarn pods",
"install:ios:ci": "yarn gems:frozen && yarn pods:frozen",
"install:ios:reset": "rm -rf vendor/bundle ios/Pods ios/Podfile.lock && yarn gems && yarn pod deintegrate && yarn pods --repo-update",
"ios": "react-native run-ios",
"ios:release": "react-native run-ios --mode Release",
"ios:light": "xcrun simctl ui booted appearance light",
"ios:dark": "xcrun simctl ui booted appearance dark",
"doctor": "react-native doctor",
"lint": "eslint . --ext ts,tsx,yml --cache",
"lint:fix": "eslint . --ext ts,tsx,yml --cache --fix",
"lint:config": "eslint --print-config index.ts",
"prettier:check": "prettier --check src/**/*.{ts,tsx,json} && prettier --check *.{ts,tsx,json}",
"prettier:write": "prettier --write src/**/*.{ts,tsx,json} && prettier --write *.{ts,tsx,json}",
"check:all": "tsgo && yarn lint && yarn prettier:check && jest",
"fix": "yarn lint:fix && yarn prettier:write",
"test": "jest",
"snap": "jest -u",
"get-stories": "sb-rn-get-stories --config-path=./.storybook",
"storybook-watcher": "sb-rn-watcher --config-path=./.storybook",
"storybook-server": "react-native-storybook-server",
"node-server": "ts-node node.ts",
"deno-server": "deno run --allow-net deno.ts",
"rename": "react-native-rename",
"clean": "react-native clean",
"clean:proj": "react-native clean-project",
"clean:proj-auto": "react-native clean-project-auto"
},
"dependencies": {
"@lavamoat/react-native-lockdown": "1.0.0",
"@react-native-async-storage/async-storage": "patch:@react-native-async-storage/async-storage@npm%3A3.1.1#~/.yarn/patches/@react-native-async-storage-async-storage-npm-3.1.1-1905bccfdf.patch",
"@react-native-community/datetimepicker": "9.1.0",
"@react-native-community/slider": "5.2.0",
"@react-native/new-app-screen": "0.87.0-nightly-20260519-58cd1bf58",
"react": "19.2.3",
"react-native": "0.87.0-nightly-20260519-58cd1bf58",
"react-native-safe-area-context": "5.8.0"
},
"devDependencies": {
"@babel/core": "7.29.7",
"@babel/preset-env": "7.29.7",
"@babel/preset-react": "7.29.7",
"@babel/runtime": "7.29.7",
"@curveball/core": "0.21.1",
"@curveball/router": "0.6.0",
"@lavamoat/allow-scripts": "5.0.2",
"@lavamoat/git-safe-dependencies": "1.0.0",
"@lavamoat/preinstall-always-fail": "3.0.0",
"@react-native-community/cli": "20.2.0",
"@react-native-community/cli-platform-android": "20.2.0",
"@react-native-community/cli-platform-ios": "20.2.0",
"@react-native/babel-preset": "0.87.0-nightly-20260519-58cd1bf58",
"@react-native/eslint-config": "0.87.0-nightly-20260519-58cd1bf58",
"@react-native/jest-preset": "0.87.0-nightly-20260519-58cd1bf58",
"@react-native/metro-config": "0.87.0-nightly-20260519-58cd1bf58",
"@react-native/typescript-config": "0.87.0-nightly-20260519-58cd1bf58",
"@storybook/addon-actions": "6.5.16",
"@storybook/addon-backgrounds": "6.5.16",
"@storybook/addon-controls": "6.5.16",
"@storybook/addon-essentials": "6.5.16",
"@storybook/addon-knobs": "6.4.0",
"@storybook/addon-links": "6.5.16",
"@storybook/addon-ondevice-actions": "6.5.7",
"@storybook/addon-ondevice-backgrounds": "6.5.7",
"@storybook/addon-ondevice-controls": "6.5.7",
"@storybook/addon-ondevice-knobs": "6.5.7",
"@storybook/addon-ondevice-notes": "6.5.7",
"@storybook/addons": "6.5.16",
"@storybook/docs-tools": "6.5.16",
"@storybook/eslint-config-storybook": "4.0.0",
"@storybook/linter-config": "4.0.0",
"@storybook/react": "6.5.16",
"@storybook/react-native": "6.5.7",
"@storybook/react-native-server": "6.5.8",
"@swc/core": "1.15.41",
"@swc/wasm": "1.15.41",
"@types/jest": "29.5.14",
"@types/react": "19.2.7",
"@types/react-test-renderer": "19.1.0",
"@types/ws": "8.18.1",
"@typescript-eslint/eslint-plugin": "8.50.0",
"@typescript-eslint/parser": "8.50.0",
"@typescript/native-preview": "7.0.0-dev.20260421.2",
"babel-loader": "9.2.1",
"babel-plugin-react-docgen-typescript": "1.5.1",
"babel-plugin-transform-inline-environment-variables": "0.4.4",
"eslint": "8.57.1",
"eslint-config-airbnb-typescript": "18.0.0",
"eslint-config-airbnb-typescript-prettier": "5.0.0",
"eslint-plugin-communist-spelling": "1.0.0",
"eslint-plugin-deprecation": "3.0.0",
"eslint-plugin-detox": "1.0.0",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jest": "29.5.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-react-native": "5.0.0",
"eslint-plugin-simple-import-sort": "9.0.0",
"eslint-plugin-sort-keys-fix": "1.1.2",
"eslint-plugin-typescript-sort-keys": "3.3.0",
"eslint-plugin-yml": "1.19.1",
"html-webpack-plugin": "5.6.7",
"husky": "9.1.7",
"jest": "29.7.0",
"lint-staged": "17.0.8",
"prettier": "2.8.8",
"react-codemod": "5.4.4",
"react-native-clean-project": "4.0.3",
"react-native-rename": "3.3.2",
"react-test-renderer": "19.2.3",
"reactotron-react-native": "5.0.3",
"ts-node": "10.9.2",
"typescript": "6.0.3",
"webpack-cli": "5.0.2",
"webpack-dev-server": "4.13.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint --cache --fix",
"prettier --write"
]
},
"engines": {
"node": ">= 22.11.0"
},
"packageManager": "yarn@4.17.0",
"lavamoat": {
"allowScripts": {
"@lavamoat/preinstall-always-fail": false,
"@storybook/react>@pmmmwh/react-refresh-webpack-plugin>core-js-pure": false,
"@storybook/react>core-js": false,
"@swc/core": false,
"webpack-cli>webpack>watchpack>watchpack-chokidar2>chokidar>fsevents": false
}
}
}