-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
executable file
·91 lines (91 loc) · 2.64 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "midway-practice",
"version": "1.0.1",
"description": "使用 midway + koa + ORM 完成 数据库 CRUD,Restful 接口基础功能,应用服务基础功能",
"private": true,
"dependencies": {
"@midwayjs/bootstrap": "^3.11.11",
"@midwayjs/bull": "^3.11.11",
"@midwayjs/core": "^3.11.11",
"@midwayjs/cross-domain": "^3.11.11",
"@midwayjs/decorator": "^3.11.11",
"@midwayjs/jwt": "^3.11.11",
"@midwayjs/koa": "^3.11.11",
"@midwayjs/logger": "^2.17.0",
"@midwayjs/redis": "^3.11.11",
"@midwayjs/sequelize": "^3.11.11",
"@midwayjs/swagger": "^3.11.11",
"@midwayjs/validate": "^3.11.11",
"@waiting/shared-core": "^20.5.0",
"@waiting/shared-types": "^20.5.0",
"bcryptjs": "^2.4.3",
"bignumber.js": "^9.1.0",
"dayjs": "^1.11.5",
"dotenv": "^16.0.1",
"happy-node-utils": "^1.0.3",
"ipip-ipdb": "^0.6.0",
"joi": "^17.6.0",
"lodash": "^4.17.21",
"mysql2": "^2.3.3",
"path-to-regexp": "^6.2.1",
"randomstring": "^1.2.2",
"sequelize": "^6.21.4",
"sequelize-typescript": "^2.1.5"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@midwayjs/cli": "^2.1.1",
"@midwayjs/luckyeye": "^1.1.0",
"@midwayjs/mock": "^3.11.11",
"@types/chai": "^4.3.3",
"@types/ioredis": "^4.28.10",
"@types/jsonwebtoken": "^8.5.8",
"@types/koa": "^2.13.5",
"@types/mocha": "^9.1.1",
"@types/node": "^18.7.9",
"@types/sinon": "^10.0.13",
"cross-env": "^7.0.3",
"egg-mock": "^3.20.0",
"eslint": "^8.22.0",
"husky": "^8.0.1",
"intelli-espower-loader": "^1.1.0",
"mocha": "^10.0.0",
"mwts": "^1.3.0",
"swagger-ui-dist": "^4.14.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"online": "NODE_ENV=production pm2-runtime start ./bootstrap.js --name midway-practice -i 1",
"start": "NODE_ENV=production node ./bootstrap.js",
"start_build": "npm run build && cross-env NODE_ENV=development midway-bin dev",
"dev": "cross-env NODE_ENV=local midway-bin dev --ts",
"test": "midway-bin test --ts --mocha",
"cov": "midway-bin cov --ts",
"lint": "mwts check",
"lint:fix": "mwts fix",
"ci": "npm run cov",
"build": "tsc",
"check": "luckyeye",
"clear": "rm -rf ./logs ./run ./dist"
},
"midway-bin-clean": [
".vscode/.tsbuildinfo",
"dist"
],
"midway-luckyeye": {
"packages": [
"midway_v2"
]
},
"repository": {
"type": "git",
"url": "https://github.com/ddzyan/midway-practice.git"
},
"author": "dingdongzhao",
"license": "MIT"
}