-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.07 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
{
"name": "@onekeybe/boilerplate",
"version": "1.0.0",
"description": "boilerplate",
"private": true,
"dependencies": {
"@aws-sdk/client-cloudwatch-logs": "^3.454.0",
"@aws-sdk/client-secrets-manager": "^3.454.0",
"@faker-js/faker": "^8.3.1",
"@midwayjs/bootstrap": "^3.12.5",
"@midwayjs/bull": "3",
"@midwayjs/core": "^3.13.0",
"@midwayjs/cross-domain": "^3.12.10",
"@midwayjs/decorator": "^3.12.3",
"@midwayjs/i18n": "3.13.7",
"@midwayjs/koa": "^3.12.0",
"@midwayjs/logger": "^2.19.3",
"@midwayjs/mongoose": "3",
"@midwayjs/redis": "3",
"@midwayjs/validate": "3",
"@typegoose/typegoose": "^11.7.1",
"dotenv": "^16.3.1",
"glob": "^10.3.10",
"lint-staged": "^15.2.2",
"lodash": "^4.17.21",
"mongoose": "^7.0.0",
"mongoose-delete": "^1.0.1",
"read-pkg": "5",
"winston-cloudwatch": "^6.2.0"
},
"devDependencies": {
"@midwayjs/cli": "^2.1.1",
"@midwayjs/mock": "^3.12.10",
"@types/jest": "^29.5.9",
"@types/koa": "^2.13.12",
"@types/lodash": "^4.14.202",
"@types/mongoose-delete": "^1.0.3",
"@types/node": "14",
"cross-env": "^7.0.3",
"eslint-plugin-import": "^2.29.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lokalise-client": "^1.1.9",
"mwts": "^1.3.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"typescript": "~5.3.2"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"start": "node ./bootstrap.js",
"local": "cross-env NODE_ENV=local midway-bin dev --ts",
"test": "midway-bin test --ts",
"cov": "midway-bin cov --ts",
"lint": "mwts check",
"lint:fix": "mwts fix",
"ci": "npm run cov",
"build": "midway-bin build -c",
"fetch:locale": "rimraf src/locales/*.json & npx lokalise-client fetch",
"prepare": "husky"
},
"midway-bin-clean": [
".vscode/.tsbuildinfo",
"dist"
],
"repository": {
"type": "git",
"url": ""
},
"author": "anonymous",
"license": "MIT",
"packageManager": "[email protected]",
"lint-staged": {
"*{.ts,.tsx}": [
"yarn run lint:fix"
]
}
}