-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
112 lines (112 loc) · 3.03 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "indexer",
"version": "0.0.0",
"description": "Index LTO Network transactions to query information like anchors and DIDs",
"keywords": [
"blockchain",
"anchor",
"DID",
"verifiable-credentials"
],
"scripts": {
"format": "prettier --write \"**/*.ts\"",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"start": "node --require ts-node/register src/main.ts",
"start:dev": "nodemon",
"build": "rm -rf dist && tsc --project tsconfig.build.json",
"postbuild": "cp -r src/config/*.json dist/config/; cp package.json dist/",
"prestart:prod": "yarn run build",
"start:prod": "node dist/main.js",
"start:hmr": "node dist/server",
"test": "jest",
"test:watch": "jest --watchAll",
"test:cov": "jest --detectOpenHandles --forceExit --coverage",
"test:e2e": "jest --detectOpenHandles --forceExit --runInBand --config ./test/jest-e2e.json",
"test:all": "yarn run test:e2e && yarn run test:cov"
},
"authors": [
{
"name": "Arnold Daniels",
"email": "[email protected]"
},
{
"name": "Sven Stam",
"email": "[email protected]"
},
{
"name": "Sergey Boltonosov",
"email": "[email protected]"
}
],
"license": "ISC",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@nestjs/axios": "^2.0.0",
"@nestjs/common": "^9.4.0",
"@nestjs/core": "^9.4.0",
"@nestjs/passport": "^9.0.3",
"@nestjs/platform-express": "^9.4.0",
"@nestjs/swagger": "^6.3.0",
"@noble/hashes": "^1.3.1",
"@scure/base": "^1.1.1",
"await-lock": "^2.2.2",
"axios": "^1.3.6",
"convict": "^6.2.4",
"cors": "^2.8.5",
"crypto-js": "3.2.1",
"delay": "^5.0.0",
"ed2curve": "^0.3.0",
"helmet": "^6.1.5",
"ioredis": "^5.3.2",
"level": "^6.0.1",
"moment": "^2.29.4",
"offset-stream": "^1.0.2",
"pascal-case": "3.1.2",
"passport": ">=0.6.0",
"passport-http-bearer": "^1.0.1",
"redisgraph.js": "^2.3.0",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.8.0",
"winston": "^3.8.2"
},
"devDependencies": {
"@nestjs/testing": "^9.4.0",
"@types/convict": "^6.1.1",
"@types/ed2curve": "^0.2.2",
"@types/express": "^4.17.17",
"@types/ioredis": "^4.28.10",
"@types/jest": "^29.5.1",
"@types/level": "^6.0.1",
"@types/node": "^18.15.13",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"eslint": "^8.43.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"prettier": "^2.8.7",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.0.4"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}