-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
52 lines (52 loc) · 1.18 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
{
"name": "@carmel/core",
"version": "1.9.8",
"scripts": {
"compile": "rm -rf lib && tsc",
"test": "savor test",
"cov": "savor cov",
"viewcov": "savor viewcov"
},
"keywords": [],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*",
"src/**/*",
"tsconfig.json"
],
"engines": {
"node": ">=16.0.0"
},
"exports": "./lib/index.js",
"type": "module",
"dependencies": {
"@types/axios": "^0.14.0",
"@types/debug": "^4.1.7",
"@types/deepmerge": "^2.2.0",
"@types/isomorphic-fetch": "0.0.35",
"@types/js-base64": "^3.0.0",
"@types/jsonwebtoken": "^8.5.0",
"@types/nanoid": "^3.0.0",
"@types/randombytes": "^2.0.0",
"@types/react": "^18.0.25",
"automerge": "^0.14.2",
"axios": "^0.21.1",
"bufferutil": "^4.0.7",
"debug": "^4.3.4",
"deepmerge": "^4.2.2",
"immediate": "^3.3.0",
"isomorphic-fetch": "^3.0.0",
"js-base64": "^3.6.0",
"jsonwebtoken": "^8.5.1",
"level": "^8.0.0",
"moment": "^2.29.1",
"nanoid": "^3.1.20",
"orbit-db": "^0.28.7"
},
"devDependencies": {
"savor": "^1.3.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}