1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- {
- "name": "express",
- "version": "1.0.0",
- "main": "dist/app.js",
- "license": "MIT",
- "dependencies": {
- "@zilliz/milvus2-sdk-node": "^1.0.19",
- "chalk": "^4.1.2",
- "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"
- },
- "devDependencies": {
- "@types/chalk": "^2.2.0",
- "@types/morgan": "^1.9.3",
- "@types/cors": "^2.8.12",
- "@types/express": "^4.17.13",
- "@types/glob": "^7.2.0",
- "@types/node": "^16.11.6",
- "@types/node-cron": "^3.0.0",
- "@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": "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"
- }
- }
|