-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
40 lines (40 loc) · 1021 Bytes
/
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
{
"private": true,
"name": "@wangeditor/server",
"version": "1.0.0",
"description": "wangEditor server",
"main": "index.js",
"scripts": {
"dev": "cross-env NODE_ENV=dev nodemon bin/www.js",
"prd-dev": "cross-env NODE_ENV=prd_dev pm2 start bin/pm2.config.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wangeditor-team/server.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/wangeditor-team/server/issues"
},
"homepage": "https://github.com/wangeditor-team/server#readme",
"dependencies": {
"cross-env": "^7.0.3",
"debug": "^4.3.1",
"formidable": "^1.2.2",
"fs-extra": "^10.0.0",
"koa": "^2.13.1",
"koa-bodyparser": "^4.3.0",
"koa-json": "^2.0.2",
"koa-logger": "^3.2.1",
"koa-onerror": "^4.1.0",
"koa-router": "^10.0.0",
"koa-static": "^5.0.0",
"koa2-cors": "^2.0.6",
"multiparty": "^4.2.2"
},
"devDependencies": {
"nodemon": "^2.0.7",
"pm2": "^5.0.4"
}
}