forked from TBD54566975/example-pfi-aud-usd-tbdex
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
57 lines (57 loc) · 1.59 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
{
"name": "tbdex-mock-pfi",
"type": "module",
"version": "1.0.0",
"dependencies": {
"@tbdex/http-server": "1.1.0",
"@web5/credentials": "1.0.3",
"@web5/dids": "1.1.1",
"ajv": "8.12.0",
"cborg": "^3.0.0",
"dotenv": "16.3.1",
"express": "4.19.2",
"fuzzysort": "^2.0.4",
"kysely": "0.26.3",
"loglevel": "1.8.1",
"loglevel-plugin-prefix": "0.8.4",
"ms": "2.1.3",
"node-fetch": "^3.3.2",
"papaparse": "^5.4.1"
},
"devDependencies": {
"@sphereon/pex-models": "2.0.3",
"@sphereon/ssi-types": "0.15.1",
"@types/chai": "4.3.4",
"@types/chai-as-promised": "7.1.5",
"@types/chai-string": "1.4.2",
"@types/eslint": "8.37.0",
"@types/express": "4.17.17",
"@types/mocha": "10.0.1",
"@types/node": "20.3.1",
"@types/pg": "8.10.2",
"@types/sinon": "10.0.15",
"@types/supertest": "2.0.12",
"@typescript-eslint/eslint-plugin": "6.2.1",
"@typescript-eslint/parser": "6.2.1",
"chai": "4.3.7",
"chai-as-promised": "7.1.1",
"chai-string": "1.5.0",
"eslint": "8.46.0",
"kysely-codegen": "0.10.1",
"mocha": "10.2.0",
"puppeteer": "^22.6.3",
"rimraf": "5.0.1",
"sinon": "15.2.0",
"supertest": "6.3.3",
"typescript": "5.2.2"
},
"scripts": {
"clean": "rimraf dist",
"compile": "tsc",
"lint": "eslint . --ext .ts --max-warnings 0",
"lint:fix": "eslint . --ext .ts --fix",
"server": "npm run compile && node --enable-source-maps dist/main.js",
"test": "rimraf dist/tests && npm run compile && node --test",
"test:e2e": "node src/test_end2end.cjs"
}
}