forked from realm/realm-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.09 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@realm/root",
"description": "Mono-repository root for the Realm JS SDK",
"private": true,
"license": "apache-2.0",
"homepage": "https://realm.io",
"scripts": {
"build": "wireit",
"bundle": "wireit",
"lint": "wireit",
"lint:fix": "wireit",
"lint:cpp": "find src packages/bindgen/src -name '*.cpp' -or -name '*.h' -or -name '*.hpp' | xargs clang-format --dry-run --Werror",
"lint:cpp:fix": "find src packages/bindgen/src -name '*.cpp' -or -name '*.h' -or -name '*.hpp' | xargs clang-format -i",
"postinstall": "git submodule update --init --recursive"
},
"wireit": {
"build": {
"dependencies": [
"bundle",
"./packages/realm:build"
]
},
"bundle": {
"dependencies": [
"./packages/realm:bundle",
"./packages/babel-plugin:bundle",
"./packages/mocha-reporter:bundle",
"./packages/realm-react:bundle",
"./packages/realm-web:bundle",
"./packages/realm-tools:build"
]
},
"lint": {
"command": "npm run lint --workspaces --if-present",
"dependencies": [
"./packages/babel-plugin:bundle"
]
},
"lint:fix": {
"command": "npm run lint --workspaces --if-present -- --fix",
"dependencies": [
"./packages/babel-plugin:bundle"
]
}
},
"engines": {
"node": "^18",
"npm": "^8"
},
"author": {
"name": "Realm",
"email": "[email protected]",
"url": "https://realm.io"
},
"workspaces": [
"example",
"packages/realm/bindgen/",
"packages/realm/bindgen/vendor/realm-core/",
"packages/babel-plugin",
"packages/realm",
"packages/realm-web",
"packages/realm-react",
"packages/realm-common",
"packages/realm-network-transport",
"packages/realm-app-importer",
"packages/realm-tools",
"packages/metro-config",
"packages/mocha-reporter",
"packages/realm-web-integration-tests",
"integration-tests/tests",
"integration-tests/environments/node",
"integration-tests/environments/electron",
"integration-tests/environments/react-native",
"integration-tests/baas-test-server"
],
"dependencies": {
"@react-native-community/eslint-config": "^3.1.0",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"clang-format": "^1.8.0",
"command-line-args": "^5.2.1",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-jasmine": "^4.1.3",
"eslint-plugin-jsdoc": "^46.2.6",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-native": "^4.0.0",
"eslint-plugin-react": "^7.32.2",
"node-addon-api": "^6.0.0",
"react-native": "0.71.7",
"rollup": "^3.15.0",
"tsx": "^3.12.3",
"typescript": "^4.9.3",
"typedoc": "^0.24.6",
"typedoc-plugin-extras": "^2.3.3",
"wireit": "^0.9.5"
},
"peerDependencies": {
"jsc-android": "250231.0.0"
},
"overrides": {
"react-native": {
"jsc-android": "250231.0.0"
}
}
}