-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathpackage.json
More file actions
139 lines (139 loc) · 3.86 KB
/
package.json
File metadata and controls
139 lines (139 loc) · 3.86 KB
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "egg",
"version": "3.34.0",
"publishConfig": {
"tag": "release-3.x",
"access": "public"
},
"description": "A web framework's framework for Node.js",
"keywords": [
"web",
"app",
"http",
"application",
"framework",
"middleware",
"koa",
"egg"
],
"dependencies": {
"@types/accepts": "^1.3.5",
"@types/koa": "^2.13.5",
"@types/koa-router": "^7.4.4",
"accepts": "^1.3.8",
"agentkeepalive": "^4.2.1",
"cache-content-type": "^1.0.1",
"circular-json-for-egg": "^1.0.0",
"cluster-client": "^3.3.0",
"delegates": "^1.0.0",
"egg-cluster": "^2.0.0",
"egg-cookies": "^2.6.1",
"egg-core": "^5.4.0",
"egg-development": "^3.0.0",
"egg-errors": "^2.3.1",
"egg-i18n": "^2.1.1",
"egg-jsonp": "^2.0.0",
"egg-logger": "^3.0.1",
"egg-logrotator": "^3.1.0",
"egg-multipart": "^3.1.0",
"egg-onerror": "^2.1.1",
"egg-schedule": "^4.0.0",
"egg-security": "^3.0.0",
"egg-session": "^3.3.0",
"egg-static": "^2.2.0",
"egg-view": "^2.1.3",
"egg-watcher": "^3.1.1",
"extend2": "^1.0.1",
"graceful": "^1.1.0",
"humanize-ms": "^1.2.1",
"is-type-of": "^2.1.0",
"koa-bodyparser": "^4.4.1",
"koa-is-json": "^1.0.0",
"koa-override": "^3.0.0",
"ms": "^2.1.3",
"on-finished": "^2.4.1",
"onelogger": "^1.0.0",
"sendmessage": "^2.0.0",
"urllib": "^2.33.0",
"urllib-next": "npm:urllib@^3.27.1",
"urllib4": "npm:urllib@^4.5.0",
"utility": "^2.1.0",
"ylru": "^1.3.2"
},
"devDependencies": {
"@eggjs/tsconfig": "^1.1.0",
"@types/node": "^20.1.2",
"@umijs/preset-react": "^2.1.6",
"address": "^1.2.1",
"antd": "^4.23.2",
"assert-file": "^1.0.0",
"coffee": "^5.4.0",
"cross-env": "^7.0.3",
"dumi": "^1.1.47",
"dumi-theme-egg": "^1.2.2",
"egg-bin": "^6.4.1",
"egg-mock": "^5.10.7",
"egg-plugin-puml": "^2.4.0",
"egg-tracer": "^2.0.0",
"egg-view-nunjucks": "^2.3.0",
"@eslint/compat": "^2.0.3",
"@eslint/eslintrc": "^3.3.5",
"@eslint/js": "^9.39.4",
"eslint": "^9.39.4",
"eslint-config-egg": "^14.1.0",
"globals": "^16.2.0",
"formstream": "^1.1.1",
"jsdoc": "^3.6.11",
"koa": "^2.13.4",
"koa-static": "^5.0.0",
"node-forge": "^1.3.3",
"node-libs-browser": "^2.2.1",
"pedding": "^1.1.0",
"prettier": "^2.7.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"react-router": "^5.3.4",
"sdk-base": "^4.2.1",
"spy": "^1.0.0",
"supertest": "^6.2.4",
"ts-node": "^10.9.1",
"tsd": "^0.28.1",
"typescript": "^5.0.4",
"umi": "^3.5.36"
},
"main": "index.js",
"types": "index.d.ts",
"files": [
"index.js",
"lib",
"app",
"config",
"agent.js",
"index.d.ts"
],
"scripts": {
"lint": "eslint app config lib test *.js",
"tsd": "tsd",
"test": "npm run lint -- --fix && npm run tsd && npm run test-local",
"test-local": "egg-bin test --ts false",
"test-local-changed": "egg-bin test --changed --ts false",
"cov": "egg-bin cov --timeout 100000 --ts false",
"ci": "npm run lint && npm run tsd && npm run cov",
"site:dev": "cross-env NODE_OPTIONS=--openssl-legacy-provider APP_ROOT=./site dumi dev",
"site:devWithNode14-16": "cross-env APP_ROOT=./site dumi dev",
"site:build": "cross-env NODE_OPTIONS=--openssl-legacy-provider APP_ROOT=./site dumi build",
"site:buildWithNode14-16": "cross-env APP_ROOT=./site dumi build",
"site:prettier": "prettier --config site/.prettierrc --ignore-path site/.prettierignore --write \"site/**/*.{js,jsx,tsx,ts,less,md,json}\"",
"puml": "puml . --dest ./site",
"commits": "./scripts/commits.sh"
},
"homepage": "https://github.com/eggjs/egg",
"repository": {
"type": "git",
"url": "git+https://github.com/eggjs/egg.git"
},
"engines": {
"node": ">= 14.20.0"
},
"license": "MIT"
}