-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
106 lines (106 loc) · 2.93 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
{
"name": "@carmel/sdk",
"version": "1.12.0",
"description": "The Carmel SDK",
"scripts": {
"pretty": "prettier --write \"./**/*.{js,jsx,json}\"",
"build": "tsc",
"test": "savor test",
"docs": "typedoc",
"viewdocs": "open docs/index.html",
"cov": "savor cov",
"viewcov": "savor viewcov"
},
"author": "I. Dan Calinescu <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/fluidtrends/carmel.sdk.git"
},
"main": "src/index.ts",
"types": "lib/index.d.ts",
"files": [
"auth/**/*",
"lib/**/*",
"src/**/*",
"package-lock.json"
],
"homepage": "http://www.carmel.io",
"dependencies": {
"@octokit/auth": "^2.0.0",
"@octokit/auth-token": "^2.4.2",
"@octokit/rest": "^18.0.0",
"@pinata/sdk": "^1.1.11",
"@types/body-parser": "^1.19.0",
"@types/browser-sync": "^2.26.1",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.6",
"@types/express": "^4.17.7",
"@types/express-session": "^1.17.0",
"@types/fs-extra": "^9.0.4",
"@types/fs-readdir-recursive": "^1.0.0",
"@types/http-proxy": "^1.17.4",
"@types/passport": "^1.0.4",
"@types/passport-github": "^1.1.5",
"@types/passport-github2": "^1.2.4",
"@types/passport-oauth2": "^1.4.9",
"@types/public-ip": "^3.1.0",
"@types/recursive-readdir": "^2.2.0",
"@types/session-file-store": "^1.2.1",
"@types/shortid": "0.0.29",
"@types/socket.io": "^2.1.8",
"@types/socket.io-client": "^1.4.33",
"@types/sshpk": "^1.10.4",
"@types/url-parse": "^1.4.3",
"@types/xml-js": "^1.0.0",
"@types/xml2js": "^0.4.7",
"@vercel/build-utils": "^2.4.0",
"@vercel/client": "^8.1.0",
"@vercel/frameworks": "0.0.15",
"@vercel/routing-utils": "^1.8.3",
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"cassi": "^1.6.1",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"deepmerge": "^4.2.2",
"dodi": "^1.9.19",
"eosjs": "^20.0.3",
"express": "^4.17.1",
"express-session": "^1.17.1",
"fs-extra": "^9.0.1",
"fs-readdir-recursive": "^1.1.0",
"get-port": "^5.1.1",
"http-proxy": "^1.18.1",
"install": "^0.13.0",
"ipfsd-ctl": "^7.2.0",
"ipfs": "^0.54.2",
"ipfs-client": "^0.2.2",
"ipfs-http-client": "^49.0.2",
"jimp": "^0.16.0",
"keypair": "^1.0.1",
"open": "^7.0.4",
"passport": "^0.4.1",
"passport-github": "^1.1.0",
"passport-github2": "^0.1.12",
"passport-oauth2": "^1.5.0",
"pm2": "^4.4.0",
"public-ip": "^4.0.3",
"rara": "^1.9.9",
"recursive-readdir": "^2.2.2",
"session-file-store": "^1.4.0",
"shortid": "^2.2.15",
"socket.io": "^2.3.0",
"socket.io-client": "^2.3.0",
"sshpk": "^1.16.1",
"url-parse": "^1.4.7",
"wrtc": "^0.4.7",
"xml-js": "^1.6.11",
"xml2js": "^0.4.23"
},
"devDependencies": {
"prettier": "^2.0.5",
"savor": "^1.3.0",
"typedoc": "^0.17.7"
}
}