123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- {
- "name": "vue-dataac-server",
- "version": "1.0.0",
- "description": "Vue-dataAc 后台服务 egg + mongodb",
- "private": true,
- "bin": "pkg-entry.js",
- "egg": {
- "declarations": true
- },
- "dependencies": {
- "egg": "^2.15.1",
- "egg-cors": "^2.2.3",
- "egg-mongoose": "^3.2.0",
- "egg-scripts": "^2.11.0",
- "mongoose": "^5.9.18",
- "node-notifier": "^9.0.1",
- "pkg": "^5.8.0"
- },
- "devDependencies": {
- "autod": "^3.0.1",
- "autod-egg": "^1.1.0",
- "egg-bin": "^4.11.0",
- "egg-ci": "^1.11.0",
- "egg-mock": "^3.21.0",
- "eslint": "^5.13.0",
- "eslint-config-egg": "^7.1.0"
- },
- "engines": {
- "node": ">=10.0.0"
- },
- "scripts": {
- "start": "egg-scripts start --port=7007 --daemon --env=prod --title=egg-server-Vue-dataAc-server",
- "stop": "egg-scripts stop --title=egg-server-Vue-dataAc-server",
- "dev": "egg-bin dev",
- "debug": "egg-bin debug",
- "test": "npm run lint -- --fix && npm run test-local",
- "test-local": "egg-bin test",
- "cov": "egg-bin cov",
- "lint": "eslint .",
- "ci": "npm run lint && npm run cov",
- "autod": "autod",
- "reload": "npm run stop && npm run start",
- "build:win": "pkg . --targets node14-win-x64 --out-path ./dist/win --debug",
- "build:linux": "pkg . --targets node14-linux-x64 --out-path ./dist/linux --debug"
- },
- "ci": {
- "version": "10"
- },
- "repository": {
- "type": "git",
- "url": ""
- },
- "author": "adminV",
- "license": "MIT",
- "pkg": {
- "scripts": [
- "./app/**/*.js",
- "./app/*.js",
- "./config/*",
- "./config/**/*.js",
- "./normalJs/**/*.js",
- "./app.js",
- "./agent.js"
- ],
- "assets": [
- "./node_modules/**/*"
- ]
- }
- }
|