| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- {
- "name": "simple",
- "version": "1.0.0",
- "main": "index.js",
- "license": "MIT",
- "scripts": {
- "build": "cross-env NODE_ENV=production webpack",
- "start": "cross-env NODE_ENV=production nodemon -r source-map-support/register ./dist/index.js",
- "watch:src": "webpack --progress --watch",
- "watch:dist": "nodemon --watch config --watch dist --delay 2 -r source-map-support/register ./dist/index.js",
- "dev": "cross-env NODE_ENV=development npm-run-all --parallel watch:src watch:dist"
- },
- "devDependencies": {
- "@types/bluebird": "^3.5.32",
- "@types/config": "^0.0.36",
- "@types/debug": "^4.1.5",
- "@types/exceljs": "^1.3.0",
- "@types/got": "^9.6.11",
- "@types/ioredis": "^4.17.3",
- "@types/jsonwebtoken": "^8.5.0",
- "@types/koa": "^2.11.4",
- "@types/koa-bodyparser": "^4.3.0",
- "@types/koa-json-error": "^3.1.2",
- "@types/koa-router": "^7.4.1",
- "@types/koa__cors": "^3.0.2",
- "@types/lodash": "^4.14.159",
- "@types/mongoose": "^5.7.36",
- "@types/mysql": "^2.15.15",
- "@types/node": "^14.14.2",
- "@types/random-string": "^0.0.28",
- "@types/randomatic": "^3.1.0",
- "@types/sequelize": "^4.28.9",
- "@types/tough-cookie": "^4.0.0",
- "@types/validator": "^13.1.0",
- "@typescript-eslint/eslint-plugin": "^3.9.1",
- "@typescript-eslint/parser": "^3.9.1",
- "eslint": "^7.7.0",
- "eslint-config-standard": "^14.1.1",
- "eslint-plugin-import": "^2.22.0",
- "eslint-plugin-node": "^11.1.0",
- "eslint-plugin-promise": "^4.2.1",
- "eslint-plugin-standard": "^4.0.1",
- "ts-loader": "^8.0.2",
- "ts-node": "^9.0.0",
- "typescript": "^4.0.2"
- },
- "dependencies": {
- "@koa/cors": "^3.1.0",
- "cache-manager-ioredis": "^2.1.0",
- "camelcase": "^6.0.0",
- "clean-webpack-plugin": "^3.0.0",
- "config": "^3.3.1",
- "content-disposition": "^0.5.3",
- "cross-env": "^7.0.2",
- "debug": "^4.2.0",
- "exceljs": "^4.2.0",
- "glob": "^7.1.6",
- "got": "^11.8.0",
- "ioredis": "^4.17.3",
- "jsonwebtoken": "^8.5.1",
- "koa": "^2.13.0",
- "koa-body": "^4.2.0",
- "koa-bodyparser": "^4.3.0",
- "koa-json-error": "^3.1.2",
- "koa-router": "^9.4.0",
- "lodash": "^4.17.20",
- "moment": "^2.27.0",
- "mongoose": "^5.10.0",
- "mongoose-long": "^0.3.1",
- "mysql2": "^2.2.5",
- "nodemon": "^2.0.6",
- "npm-run-all": "^4.1.5",
- "random-string": "^0.2.0",
- "randomatic": "^3.1.1",
- "sequelize": "^6.3.5",
- "source-map-support": "^0.5.19",
- "webpack": "^5.3.0",
- "webpack-cli": "^4.1.0",
- "webpack-node-externals": "^2.5.2",
- "xlsx": "^0.16.8"
- }
- }
|