-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
35 lines (35 loc) · 1.03 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
{
"name": "filesystem-livesync",
"version": "0.0.1",
"description": "",
"main": "index.js",
"type": "commonjs",
"scripts": {
"dev": "node esbuild.config.mjs && node dist/index.js",
"build": "node esbuild.config.mjs production"
},
"author": "",
"license": "ISC",
"dependencies": {
"chokidar": "^3.5.3",
"pouchdb-adapter-http": "^8.0.0",
"pouchdb-adapter-idb": "^8.0.0",
"pouchdb-adapter-leveldb": "^8.0.0",
"pouchdb-core": "^8.0.0",
"pouchdb-find": "^8.0.0",
"pouchdb-mapreduce": "^8.0.0",
"pouchdb-replication": "^8.0.0",
"pouchdb-utils": "file:src/lib/src/patches/pouchdb-utils",
"transform-pouch": "^2.0.0",
"xxhash-wasm": "^1.0.1"
},
"devDependencies": {
"@tsconfig/node16": "^1.0.2",
"@types/node": "^17.0.18",
"@types/pouchdb": "^6.4.0",
"builtin-modules": "^3.2.0",
"esbuild": "^0.14.22",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
}
}