123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- {
- "name": "express",
- "version": "1.0.0",
- "main": "dist/app.js",
- "license": "MIT",
- "dependencies": {
- "@zilliz/milvus2-sdk-node": "^1.0.19",
- "chalk": "^4.1.2",
- "class-sanitizer": "^1.0.1",
- "class-transformer": "^0.4.0",
- "class-validator": "^0.13.1",
- "cors": "^2.8.5",
- "cross-env": "^7.0.3",
- "express": "^4.17.1",
- "glob": "^7.2.0",
- "helmet": "^4.6.0",
- "morgan": "^1.10.0",
- "node-cron": "^3.0.0",
- "rimraf": "^3.0.2",
- "socket.io": "^4.3.1",
- "swagger-jsdoc": "^6.1.0",
- "swagger-ui-express": "^4.1.6"
- },
- "devDependencies": {
- "@types/swagger-jsdoc": "^6.0.1",
- "@types/chalk": "^2.2.0",
- "@types/cors": "^2.8.12",
- "@types/express": "^4.17.13",
- "@types/glob": "^7.2.0",
- "@types/morgan": "^1.9.3",
- "@types/node": "^16.11.6",
- "@types/node-cron": "^3.0.0",
- "@types/swagger-ui-express": "^4.1.3",
- "@types/ws": "^8.2.0",
- "nodemon": "^2.0.14",
- "ts-node": "^10.4.0",
- "tslint": "^6.1.3",
- "typescript": "^4.4.4"
- },
- "scripts": {
- "prebuild": "tslint -c tslint.json -p tsconfig.json --fix",
- "build": "yarn clean && tsc",
- "prestart": "rm -rf dist && yarn build",
- "start": "nodemon ./src/app",
- "start:plugin": "yarn build && cross-env PLUGIN_DEV=1 node dist/milvus-insight/express/src/app.js",
- "start:prod": "node dist/app.js",
- "test": "echo \"Error: no test specified\" && exit 1",
- "clean": "rimraf dist"
- },
- "nodemonConfig": {
- "ignore": [
- "**/*.test.ts",
- "**/*.spec.ts",
- "build",
- ".git",
- "node_modules"
- ],
- "watch": [
- "src"
- ],
- "ext": "ts yml"
- }
- }
|