-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.37 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.37 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
{
"name": "@deploystack/satellite",
"version": "0.1.0",
"description": "DeployStack Satellite - MCP Server Management Service",
"main": "dist/index.js",
"scripts": {
"dev": "nodemon",
"build": "tsc && webpack --mode=production",
"build:dev": "tsc && webpack --mode=development",
"build:watch": "tsc && webpack --mode=development --watch",
"start": "node --env-file=.env dist/index.js",
"lint": "eslint --config eslint.config.ts 'src/**/*.ts' --fix",
"check:no-console": "node scripts/check-no-console.js",
"release": "release-it --config=.release-it.js"
},
"dependencies": {
"@fastify/http-proxy": "^10.0.0",
"@fastify/swagger": "^9.5.1",
"@fastify/swagger-ui": "^5.2.3",
"dotenv": "^17.2.2",
"fastify": "^5.4.0",
"pino": "^9.9.0",
"pino-pretty": "^13.1.1"
},
"devDependencies": {
"@release-it/conventional-changelog": "^10.0.1",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^8.36.0",
"@typescript-eslint/parser": "^8.39.1",
"copy-webpack-plugin": "^13.0.1",
"eslint": "^9.34.0",
"node-loader": "^2.1.0",
"nodemon": "^3.1.10",
"release-it": "^19.0.4",
"ts-loader": "^9.5.4",
"ts-node": "^10.9.2",
"typescript": "^5.9.2",
"typescript-eslint": "^8.42.0",
"webpack": "^5.101.3",
"webpack-cli": "^6.0.1",
"webpack-node-externals": "^3.0.0"
}
}