-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.42 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
{
"name": "anytrace",
"version": "0.1.0",
"description": "Command-based microservice tracing tool",
"license": "BSL-1.0",
"main": "dist/server/index.js",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/FeepingCreature/anytrace.git"
},
"keywords": [
"microservices",
"tracing",
"logging",
"debugging",
"monitoring"
],
"author": "Mathis Beer",
"bugs": {
"url": "https://github.com/FeepingCreature/anytrace/issues"
},
"homepage": "https://github.com/FeepingCreature/anytrace#readme",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"start": "node ./dist/server/entry.mjs",
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"test": "jest",
"lint": "eslint -c eslint.config.mjs"
},
"dependencies": {
"@astrojs/node": "^9.0.1",
"@types/js-yaml": "^4.0.5",
"@types/ws": "^8.5.13",
"astro": "^5.1.6",
"express": "^4.18.2",
"js-yaml": "^4.1.0",
"typescript": "^5.3.3",
"ws": "^8.18.0"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.57.1",
"globals": "^15.14.0",
"jest": "^29.7.0",
"ts-node-dev": "^2.0.0",
"typescript-eslint": "^8.20.0"
}
}