-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 1.88 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
{
"name": "server-template",
"version": "1.0.0",
"description": "egg 开发服务端应用模版",
"private": true,
"egg": {
"declarations": true,
"typescript": true
},
"keywords": [
"egg",
"egg-server",
"server-template",
"template"
],
"files": [
"dist/**/*"
],
"dependencies": {
"@eggjs/tegg": "^0.1.1",
"@eggjs/tegg-config": "^0.1.0",
"@eggjs/tegg-controller-plugin": "^0.1.1",
"@eggjs/tegg-eventbus-plugin": "^0.1.17",
"@eggjs/tegg-orm-decorator": "^0.1.5",
"@eggjs/tegg-orm-plugin": "^0.1.5",
"@eggjs/tegg-plugin": "^0.1.1",
"@eggjs/tsconfig": "^1.0.0",
"@node-rs/crc32": "^1.5.0",
"@sinclair/typebox": "^0.23.0",
"base-x": "^3.0.9",
"bson-objectid": "^2.0.3",
"crypto": "^1.0.1",
"egg": "^2.29.4",
"egg-cors": "^2.2.3",
"egg-errors": "^2.3.1",
"egg-redis": "^2.4.0",
"egg-scripts": "^2.11.0",
"egg-tracer": "^1.1.0",
"egg-typebox-validate": "^2.3.1",
"leoric": "^1.15.0",
"mysql": "^2.18.1",
"ssri": "^9.0.0"
},
"devDependencies": {
"autod": "^3.0.1",
"autod-egg": "^1.1.0",
"egg-bin": "^4.16.4",
"egg-ci": "^1.11.0",
"egg-mock": "^3.21.0",
"eslint": "^5.13.0",
"eslint-config-egg": "^9.0.0",
"ts-node": "^10.7.0",
"typescript": "^4.3.5"
},
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"start": "egg-scripts start --daemon --title=egg-server-template",
"stop": "egg-scripts stop --title=egg-server-template",
"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"
},
"ci": {
"version": "10"
},
"repository": {
"type": "git",
"url": ""
},
"author": "Zian502",
"license": "MIT"
}