forked from OWND-Project/OWND-Project-VCI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.83 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
{
"name": "ownd-vci",
"version": "1.0.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"./dist/index.js"
],
"type": "module",
"license": "MIT",
"dependencies": {
"@ladjs/koa-views": "^9.0.0",
"@meeco/sd-jwt": "^0.0.2",
"axios": "^1.5.1",
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"elliptic-jwk": "^0.0.1",
"jose": "^4.15.3",
"js-crypto-key-utils": "^1.0.7",
"jsrsasign": "^11.1.0",
"koa": "^2.14.2",
"koa-basic-auth": "^4.0.0",
"koa-body": "^6.0.1",
"koa-router": "^12.0.0",
"koa-static": "^5.0.0",
"libsodium-wrappers": "^0.7.13",
"sqlite": "^5.0.1",
"sqlite3": "^5.1.6",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/chai": "^4.3.6",
"@types/jsrsasign": "^10.5.13",
"@types/koa": "^2.13.8",
"@types/koa-basic-auth": "^2.0.4",
"@types/koa-router": "^7.4.4",
"@types/koa-static": "^4.0.2",
"@types/libsodium-wrappers": "^0.7.11",
"@types/mocha": "^10.0.1",
"@types/supertest": "^2.0.12",
"@types/uuid": "^9.0.4",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"chai": "^4.3.8",
"eslint": "^8.48.0",
"eslint-config-prettier": "^8.0.0",
"mocha": "^10.2.0",
"nock": "^13.3.3",
"nodemon": "^3.0.1",
"prettier": "^2.0.0",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"scripts": {
"build": "yarn fix && ./node_modules/.bin/tsc -p tsconfig.build.json",
"test": "./node_modules/.bin/mocha --exit",
"lint": "./node_modules/.bin/eslint --ext .js --config ./.eslintrc.cjs",
"lint:prettier": "./node_modules/.bin/prettier --check ./src ./tests",
"fix": "yarn fix:eslint && yarn fix:prettier",
"fix:eslint": "yarn lint --fix",
"fix:prettier": "yarn lint:prettier --write"
}
}