-
Notifications
You must be signed in to change notification settings - Fork 586
/
Copy pathpackage.json
107 lines (107 loc) · 3.24 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
{
"name": "@realm/root",
"description": "Mono-repository root for the Realm JS SDK",
"private": true,
"license": "apache-2.0",
"homepage": "https://www.mongodb.com/docs/realm/",
"scripts": {
"build": "wireit",
"bundle": "wireit",
"lint": "wireit",
"lint:fix": "wireit",
"lint:cpp": "find src packages/realm/bindgen/src -name '*.cpp' -or -name '*.h' -or -name '*.hpp' | xargs clang-format --dry-run --Werror",
"lint:cpp:fix": "find src packages/realm/bindgen/src -name '*.cpp' -or -name '*.h' -or -name '*.hpp' | xargs clang-format -i",
"clean": "git clean -fdx -e node_modules -e .env"
},
"wireit": {
"build": {
"dependencies": [
"bundle",
"./packages/realm:build:ts"
]
},
"bundle": {
"dependencies": [
"./packages/realm:build:ts",
"./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": ">=20",
"npm": ">=10"
},
"author": {
"name": "MongoDB",
"email": "[email protected]",
"url": "https://www.mongodb.com/docs/realm/"
},
"workspaces": [
"packages/realm/bindgen/",
"packages/realm/bindgen/vendor/realm-core/",
"packages/babel-plugin",
"packages/fetch",
"packages/realm",
"packages/realm-web",
"packages/realm-common",
"packages/realm-app-importer",
"packages/realm-react",
"packages/realm-tools",
"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/eslint-config": "0.73.2",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-typescript": "^11.1.6",
"@tsconfig/node-lts": "^20.1.3",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"clang-format": "^1.8.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-jasmine": "^4.1.3",
"eslint-plugin-jsdoc": "^48.2.1",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.34.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-native": "^4.0.0",
"node-addon-api": "^7.1.0",
"prettier": "2.8.8",
"react-native": "0.73.2",
"rollup": "^4.13.0",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-istanbul": "^5.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"tsx": "^4.7.1",
"typedoc": "^0.25.12",
"typescript": "5.0.4",
"wireit": "^0.14.4"
}
}