forked from algorandfoundation/liquid-auth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
133 lines (133 loc) · 3.9 KB
/
package.json
File metadata and controls
133 lines (133 loc) · 3.9 KB
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "@algorandfoundation/liquid-server",
"version": "1.0.0-beta.1",
"description": "Liquid Auth API Service",
"author": "Algorand Foundation",
"type": "module",
"license": "MIT",
"files": [
"./src/**/*.md"
],
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"exports": {
".": {
"default": "./dist/src/index.js",
"types": "./dist/src/index.d.ts"
}
},
"scripts": {
"build": "nest build",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"start": "nest start",
"dev": "nest start --watch",
"start:debug": "cross-env NODE_ENV=development nest start --debug --watch",
"start:prod": "node dist/src/main.js",
"lint": "eslint \"{src,apps,libs,test}/**/*.ts\"",
"lint:fix": "eslint \"{src,apps,libs,test}/**/*.ts\" --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "jest --config ./test/jest-e2e.json",
"preinstall": "node bin/bootstrap.js && node bin/update-well-known.js",
"sentry:sourcemaps": "sentry-cli sourcemaps inject --org phearzero --project node-express dist && sentry-cli sourcemaps upload --org phearzero --project node-express dist"
},
"dependencies": {
"@nestjs/common": "^11.1.10",
"@nestjs/config": "^4.0.2",
"@nestjs/core": "^11.1.10",
"@nestjs/microservices": "^11.1.10",
"@nestjs/mongoose": "^11.0.4",
"@nestjs/platform-express": "^11.1.10",
"@nestjs/platform-socket.io": "^11.1.10",
"@nestjs/swagger": "^11.2.3",
"@nestjs/websockets": "^11.1.10",
"@sentry/node": "^10.32.1",
"@sentry/profiling-node": "^10.32.1",
"@simplewebauthn/server": "^13.2.2",
"@socket.io/redis-adapter": "^8.3.0",
"algosdk": "^3.5.2",
"base64url": "^3.0.1",
"connect-mongo": "^6.0.0",
"cookie-parser": "^1.4.7",
"express-session": "^1.18.2",
"hbs": "^4.2.0",
"ioredis": "^5.8.2",
"mongoose": "^9.0.2",
"redis": "^5.10.0",
"reflect-metadata": "^0.2.2",
"rxjs": "^7.8.2",
"tweetnacl": "^1.0.3",
"ua-parser-js": "^2.0.7",
"uuid": "^13.0.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@faker-js/faker": "^10.1.0",
"@nestjs/cli": "^11.0.14",
"@nestjs/schematics": "^11.0.9",
"@nestjs/testing": "^11.1.10",
"@types/express": "^5.0.6",
"@types/express-session": "^1.18.2",
"@types/express-socket.io-session": "^1.3.9",
"@types/hbs": "^4.0.5",
"@types/jest": "^30.0.0",
"@types/node": "^25.0.3",
"@types/supertest": "^6.0.3",
"@types/ua-parser-js": "^0.7.39",
"@typescript-eslint/eslint-plugin": "^8.50.1",
"@typescript-eslint/parser": "^8.50.1",
"cross-env": "^10.1.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.5.0",
"jest": "^30.2.0",
"prettier": "^3.7.4",
"source-map-support": "^0.5.21",
"supertest": "^7.1.4",
"ts-jest": "^29.4.6",
"ts-loader": "^9.5.4",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=20.0.0"
},
"jest": {
"testTimeout": 10000,
"extensionsToTreatAsEsm": [
".ts"
],
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
},
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "src",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coveragePathIgnorePatterns": [
"index.ts",
"/node_modules/",
"/test/",
"/dist/",
"/src/main.ts",
"/src/adapters/redis-io.adapter.ts",
"/src/encoding/"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}