-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
61 lines (61 loc) · 2.02 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
{
"name": "sidetree-cardano",
"version": "0.0.1",
"description": "Sidetree implementation on top of Cardano",
"repository": "https://github.com/rodolfomiranda/sidetree-cardano",
"license": "Apache-2.0",
"main": "dist/src/core.js",
"types": "dist/lib/index.d.ts",
"dependencies": {
"@blockfrost/blockfrost-js": "^2.0.1",
"@decentralized-identity/ion-sdk": "^0.5.0",
"@decentralized-identity/sidetree": "1.0.5",
"@emurgo/cardano-serialization-lib-nodejs": "^9.1.0",
"@supabase/postgrest-js": "^0.35.0",
"@transmute/did-key-ed25519": "^0.3.0-unstable.4",
"@types/bitcore-lib": "^0.15.3",
"@types/koa": "^2.13.4",
"@types/koa-router": "^7.4.4",
"axios": "^0.24.0",
"bip39-light": "^1.0.7",
"bitcore-lib": "^8.25.10",
"bson": "^4.5.3",
"express": "^4.17.1",
"koa": "^2.13.3",
"koa-router": "^10.1.1",
"koa2-cors": "^2.0.6",
"request": "^2.88.2",
"yarn-run-all": "^3.1.1"
},
"devDependencies": {
"@commitlint/cli": "^10.0.0",
"@types/http-status": "0.2.30",
"@types/mongodb": "3.6.9",
"@types/node": "11.13.4",
"@types/node-fetch": "2.3.2",
"@types/semver": "7.3.5",
"@types/time-span": "2.0.0",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"async-retry": "1.2.3",
"copyfiles": "2.3.0",
"eslint": "^7.10.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prefer-arrow": "^1.2.2",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"ts-node": "8.3.0",
"tslint": "5.11.0",
"tslint-config-standard": "8.0.1",
"typescript": "3.9.6"
},
"scripts": {
"build": "tsc && copyfiles \"json/**/*.json\" dist && copyfiles && copyfiles \"package.json\" dist && copyfiles \"www/**\" dist",
"start": "npm-run-all --parallel cardano core swagger",
"core": "node dist/core.js",
"cardano": "node dist/cardano.js",
"swagger": "node dist/swagger.js"
}
}