-
Notifications
You must be signed in to change notification settings - Fork 467
/
package.json
52 lines (52 loc) · 2 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
{
"private": true,
"name": "@react-native-async-storage/root",
"version": "0.0.1-dev",
"scripts": {
"build": "turbo run build",
"format": "concurrently 'yarn:format:*'",
"format:c": "clang-format -i $(git ls-files '*.cpp' '*.h' '*.m' '*.mm') --style file:.config/.clang-format",
"format:js": "prettier --write $(git ls-files '*.js' '*.json' '*.ts' '*.tsx' '*.yml' 'README.md')",
"test:lint": "turbo run test:lint",
"test:ts": "turbo run test:ts",
"test:format": "prettier --check --loglevel warn $(git ls-files '*.js' '*.json' '*.ts' '*.tsx' '*.yml' 'README.md')",
"release:version": "./.github/scripts/setup-ci-git-user.sh && changeset version",
"release:publish": "./.github/scripts/setup-ci-git-user.sh && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.27.7",
"concurrently": "^8.2.2",
"eslint": "^8.54.0",
"prettier": "^2.8.8",
"turbo": "^1.12.5",
"typescript": "^5.3.0"
},
"engines": {
"node": "v20.11.1"
},
"packageManager": "[email protected]",
"resolutions": {
"@react-native-community/cli": "^14.0.0",
"@react-native-community/cli-platform-android": "^14.0.0",
"@react-native-community/cli-platform-ios": "^14.0.0",
"@react-native/assets-registry": "^0.75.0",
"@react-native/babel-plugin-codegen": "^0.75.0",
"@react-native/babel-preset": "^0.75.0",
"@react-native/codegen": "^0.75.0",
"@react-native/community-cli-plugin": "^0.75.0",
"@react-native/community-cli-plugin/@react-native-community/cli-server-api": "^14.0.0",
"@react-native/community-cli-plugin/@react-native-community/cli-tools": "^14.0.0",
"@react-native/gradle-plugin": "^0.75.0",
"@react-native/js-polyfills": "^0.75.0",
"@react-native/normalize-colors": "^0.75.0",
"@react-native/virtualized-lists": "^0.75.0",
"find-babel-config/json5": "^2.1.1"
},
"workspaces": [
"packages/api",
"packages/default-storage",
"packages/eslint-config",
"packages/sqlite-storage",
"packages/website"
]
}