-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
76 lines (76 loc) · 2.72 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
{
"name": "endorser-ch",
"version": "4.1.5-beta",
"description": "Server for recording assertions and reporting on signatures",
"author": "Trent Larson <trent@trentlarson.com>",
"license": "SQLite Blessing",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "tsc && ts-node dist/index.js",
"compile": "babel src --out-dir dist --delete-dir-on-start --source-maps inline --copy-files",
"dev": "nodemon src --exec ts-node --config .nodemonrc.json | pino-pretty",
"dev:debug": "nodemon src --exec ts-node --config .nodemonrc.json --inspect | pino-pretty",
"lint": "eslint -c .eslintrc.json {src,test}/**",
"lint:fix": "eslint --fix -c .eslintrc.json {src,test}/**",
"flyway": "bash -c 'flyway -c src/conf/flyway.js \"$1\"; flyway -c src/conf/flyway-partner.js \"$1\"' --",
"test": "tsc && mocha --require @babel/register --exit",
"test:debug": "mocha --require @babel/register --inspect-brk --exit",
"reset-claim-fields": "LOG_LEVEL=info mocha --require @babel/register scripts/reset-claim-fields.js --exit",
"reset-confirms": "LOG_LEVEL=info mocha --require @babel/register scripts/reset-confirms.js --exit",
"set-3-visible": "LOG_LEVEL=info mocha --require @babel/register scripts/set-3-visible.js --exit"
},
"dependencies": {
"@peculiar/asn1-ecc": "^2.3.8",
"@peculiar/asn1-schema": "^2.3.8",
"body-parser": "^1.18.2",
"canonicalize": "^1.0.8",
"cbor-x": "^1.5.9",
"cookie-parser": "^1.4.3",
"cors": "^2.8.5",
"did-jwt": "^7.4.7",
"did-resolver": "^4.0.0",
"dotenv": "^6.0.0",
"express": "^4.16.4",
"geohashing": "^2.0.1",
"helmet": "^3.22.0",
"luxon": "^1.12.0",
"node-cache": "^5.1.2",
"node-flywaydb": "^3.0.7",
"nostr-tools": "^2.7.2",
"pino": "^5.10.2",
"pluscodes": "^2.6.0",
"ramda": "^0.26.1",
"sqlite3": "^5.1.7",
"ulidx": "^0.3.0",
"websocket-ts": "^2.1.5"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/eslint-parser": "^7.22.15",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.2.3",
"@types/body-parser": "^1.19.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/luxon": "^3.4.2",
"@types/node": "^22.5.5",
"base64url": "^3.0.1",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"chai-string": "^1.5.0",
"eslint": "^8.0.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.14.0",
"ethr-did-resolver": "^8.1.2",
"express-swagger-generator": "^1.1.11",
"mocha": "^10.2.0",
"nodemon": "^3.1.0",
"pino-pretty": "^2.2.2",
"supertest": "^3.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"uport-credentials": "1.1.7"
}
}