-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1001 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 1001 Bytes
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
{
"name": "@eryue/core",
"version": "1.0.0",
"description": "A framework for full stack development of Nodejs for SMEs(small and medium-sized enterprises)!",
"main": "dist",
"repository": "https://github.com/famanoder/Eryue.git",
"author": "famanoder <915905174@qq.com>",
"license": "MIT",
"scripts": {
"build": "./node_modules/.bin/babel src --out-dir dist --delete-dir-on-start",
"dev": "yarn build -w",
"prepublish": "yarn build"
},
"engines": {
"node": ">= 8.1.4"
},
"dependencies": {
"@eryue/injector": "^1.0.7",
"@eryue/koa-router-mapping": "^1.1.3",
"@eryue/utils": "^1.0.4",
"koa": "^2.7.0",
"koa-bodyparser": "^4.2.1",
"koa-compose": "^4.1.0",
"koa-compress": "^3.0.0",
"koa-favicon": "^2.0.1",
"koa-static": "^5.0.0",
"mz": "^2.7.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-decorators": "^7.4.4",
"@babel/preset-env": "^7.4.5"
}
}