加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
package.json 3.68 KB
一键复制 编辑 原始数据 按行查看 历史
{
"name": "Solution-Platform-Server",
"description": "application created by thinkjs",
"version": "1.6.0",
"scripts": {
"dev": "pm2-runtime start config/node.development.js -n flyfish",
"dev-debug": "DEBUG=think-router node config/node.debug.js",
"pm2-production-start": "pm2 start config/pm2.production.json",
"pm2-production-reload": "pm2 sendSignal SIGUSR2 Solution-Platform-Server config/pm2.production.json",
"pm2-production-restart": "pm2 restart config/pm2.production.json",
"pm2-production-stop": "pm2 stop config/pm2.production.json",
"pm2-staging-start": "pm2 start config/pm2.staging.json",
"pm2-staging-reload": "pm2 sendSignal SIGUSR2 Solution-Platform-Server config/pm2.staging.json",
"pm2-staging-restart": "pm2 restart config/pm2.staging.json",
"pm2-staging-stop": "pm2 stop config/pm2.staging.json",
"pm2-development-start": "pm2 start config/pm2.development.json",
"pm2-development-reload": "pm2 sendSignal SIGUSR2 Solution-Platform-Server config/pm2.development.json",
"pm2-development-restart": "pm2 restart config/pm2.development.json",
"pm2-development-stop": "pm2 stop config/pm2.development.json",
"compile": "babel --no-babelrc src/ --presets think-node --out-dir app/",
"lint": "eslint src/",
"lint-fix": "eslint --fix src/",
"createWebApiDoc": "apidoc -i ./src/web/controller/ -o ./www/webApiDoc",
"init_database_dev": "db-migrate up --config config/database.dev.json -e mysql -m ./migrations_init",
"init_database_production": "db-migrate up --config config/database.production.json -e mysql -m ./migrations_init",
"init_database_staging": "db-migrate up --config config/database.staging.json -e mysql -m ./migrations_init",
"init_database_development": "db-migrate up --config config/database.development.json -e mysql -m ./migrations_init",
"release": "standard-version",
"release:minor": "npm run release -- --release-as minor",
"release:major": "npm run release -- --release-as major",
"replace": "replace '\\* #' '*' CHANGELOG.md"
},
"dependencies": {
"archiver": "^2.1.1",
"async-file": "^2.0.2",
"db-migrate": "^0.10.5",
"db-migrate-mysql": "^1.1.10",
"extract-zip": "^1.6.6",
"lodash": "^4.17.5",
"mime": "^2.2.0",
"node-client-sdk": "^1.0.4",
"pm2": "^2.10.1",
"request": "^2.88.2",
"svg-captcha": "^1.4.0",
"think-cache": "^1.1.0",
"think-cache-file": "^1.1.0",
"think-cache-redis": "^1.2.0",
"think-logger3": "^1.1.1",
"think-model": "^1.1.7",
"think-model-mysql": "^1.0.6",
"think-session": "^1.0.3",
"think-session-file": "^1.0.6",
"think-view": "^1.0.11",
"think-view-nunjucks": "^1.0.7",
"thinkjs": "3.2.7",
"uuid": "^3.2.1"
},
"devDependencies": {
"apidoc": "^0.17.6",
"babel-cli": "^6.26.0",
"babel-preset-think-node": "^1.0.3",
"commitizen": "^4.2.4",
"conventional-changelog-cli": "^2.1.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^4.18.2",
"eslint-config-think": "^1.0.2",
"node-notifier": "^5.2.1",
"replace": "^1.2.1",
"standard-version": "^9.3.0",
"think-babel": "^1.0.6",
"think-inspect": "^0.0.2",
"think-watcher": "^3.0.3"
},
"standard-version": {
"scripts": {
"postchangelog": "npm run changelog && npm run replace && git add .",
"posttag": "git push origin --tags -f"
}
},
"apidoc": {
"name": "example",
"version": "1.0.0",
"description": "apiDoc basic example",
"apidoc": {
"title": "Custom apiDoc browser title",
"url": "https://api.github.com/v1"
}
},
"repository": "",
"license": "MIT",
"engines": {
"node": ">=6.0.0"
},
"readmeFilename": "README.md"
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化