-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.01 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.01 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
{
"name": "mbus-backend",
"version": "1.0.0",
"description": "",
"type": "module",
"main": "src/app.ts",
"scripts": {
"start": "tsx src/app.ts",
"test": "vitest run test",
"stress-test": "vitest run test/search-stress.test.ts",
"docs": "typedoc --entryPointStrategy expand ./src --exclude \"**/legacy/**\""
},
"author": "Efe Akinci",
"license": "ISC",
"dependencies": {
"@datastructures-js/priority-queue": "^6.3.3",
"axios": "^1.7.2",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"fast-json-stable-stringify": "^2.1.0",
"fast-xml-parser": "^5.3.2",
"firebase-admin": "^13.6.0",
"lru-cache": "^11.2.5",
"ts-array-utils": "^0.5.0",
"tsx": "^4.11.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.12.12",
"@vitest/coverage-v8": "^1.2.2",
"typedoc": "^0.28.15",
"vitest": "^1.2.2"
}
}