-
Notifications
You must be signed in to change notification settings - Fork 577
/
package.json
109 lines (109 loc) · 3.28 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://www.mongodb.com/docs/realm/",
"scripts": {
"build": "wireit",
"lint": "wireit",
"lint:fix": "wireit",
"clean": "git clean -fdx -e node_modules -e .env",
"update-submodules": "git submodule update --recursive --init",
"prepend-changelog-header": "tsx scripts/prepend-changelog-header.ts"
},
"wireit": {
"build": {
"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",
"./integration-tests/tests:build"
]
},
"lint": {
"command": "npm run lint --workspaces --if-present && trunk check --all",
"dependencies": [
"./packages/babel-plugin:bundle"
]
},
"lint:fix": {
"command": "npm run lint --workspaces --if-present -- --fix && trunk fmt",
"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-test-app",
"integration-tests/baas-test-server"
],
"dependencies": {
"@react-native/eslint-config": "0.76.0",
"@react-native/eslint-plugin": "0.76.0",
"@react-native/typescript-config": "0.76.0",
"@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",
"@trunkio/launcher": "^1.3.1",
"@tsconfig/node-lts": "^20.1.1",
"@types/chai": "^4.2.10",
"@types/mocha": "^10",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"chai": "4.3.6",
"eslint": "^8.43.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.0.4",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-native": "^4.0.0",
"mocha": "^10",
"node-addon-api": "^7.1.0",
"prettier": "2.8.8",
"rollup": "^4.22.4",
"rollup-plugin-dts": "^6.1.0",
"rollup-plugin-istanbul": "^5.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"tsx": "^4.7.2",
"typedoc": "^0.25.7",
"typescript": "5.0.4",
"wireit": "^0.14.4"
},
"devDependencies": {
"madge": "^7.0.0"
}
}