-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 708 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 708 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "rxdb-example-electron",
"main": "main.js",
"version": "0.0.1",
"private": true,
"scripts": {
"preinstall": "npm run preinstall:rxdb",
"preinstall:rxdb": "(cd ../../ && npx [email protected] pack ../../ --filename ./examples/electron/rxdb-local.tgz)",
"start": "npm run electron",
"electron": "electron . -enable-logging",
"test": "mocha"
},
"//": "NOTICE: For the Github CI we use the local RxDB build (rxdb-local.tgz). In your app should just install 'rxdb' from npm instead",
"dependencies": {
"rxdb": "file:rxdb-local.tgz",
"electron": "41.1.0",
"rxjs": "7.8.2"
},
"devDependencies": {
"mocha": "11.7.5",
"playwright-core": "1.58.2"
}
}