forked from passportxyz/passport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.37 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": "@gitcoin/passport-database-client",
"version": "1.0.0",
"license": "MIT",
"type": "module",
"main": "dist/esm/src/index.js",
"directories": {
"src": "src",
"dist": "dist"
},
"files": [
"src",
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"clean": "rimraf dist node_modules",
"ceramic": "ceramic daemon",
"test:integration": "yarn build && yarn node --experimental-vm-modules $(yarn bin jest) -c jest.integration.config.js",
"test": "yarn node --experimental-vm-modules $(yarn bin jest) -c jest.config.cjs"
},
"dependencies": {
"@ceramicnetwork/http-client": "^2.2.1",
"@gitcoin/passport-schemas": "^1.0.0",
"@glazed/datamodel": "^0.3.0",
"@glazed/did-datastore": "^0.3.1",
"@glazed/tile-loader": "^0.2.0",
"dids": "^3.1.0",
"dotenv": "^16.0.0",
"key-did-provider-ed25519": "^2.0.0",
"key-did-resolver": "^2.0.0",
"uint8arrays": "^3.0.0"
},
"devDependencies": {
"@ceramicnetwork/common": "^2.2.1",
"@ceramicnetwork/stream-tile": "^2.2.2",
"@glazed/devtools": "^0.1.6",
"@glazed/did-datastore-model": "^0.2.0",
"@glazed/types": "^0.2.0",
"@types/jest": "^27.4.1",
"@types/node": "^16.11.6",
"jest": "^27.5.1",
"ts-jest": "^27.1.4",
"ts-node": "^10.8.0"
},
"resolutions": {
"leveldown": "6.1.1"
}
}