-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 2.5 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@mmstudio/server",
"version": "1.1.0",
"description": "web server",
"scripts": {
"dev": "tsc -w",
"clean": "del-cli ./dist/",
"lint": "eslint ./src/**/*.ts",
"compile": "tsc",
"build": "npm run clean && npm run lint && npm run compile",
"up": "git pull [email protected]:mm-core/base.git cjs",
"start": "node ./dist/index.js"
},
"bin": {
"mm-server": "dist/index.js"
},
"repository": {
"type": "https+git",
"url": "https://github.com/mm-core/server.git"
},
"homepage": "https://mm-works.github.io",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"mm",
"mmstudio",
"蛮蛮",
"蛮蛮工作室",
"插件式",
"原子操作",
"控件",
"框架"
],
"author": {
"name": "taoqf",
"email": "[email protected]"
},
"maintainers": [
{
"name": "taoqf",
"email": "[email protected]"
}
],
"license": "MIT",
"dependencies": {
"@mmstudio/invoke": "1.1.202004170948",
"bl": "4.0.3",
"cookie-parser": "1.4.5",
"errorhandler": "1.5.1",
"express": "4.17.1",
"express-form-data": "2.0.14",
"ffprobe": "1.1.2",
"ffprobe-static": "3.0.0",
"inline-source": "7.2.0",
"jsreport-core": "2.10.1",
"jsreport-html-embedded-in-docx": "2.2.0",
"jsreport-html-to-xlsx": "2.8.1",
"jsreport-phantom-pdf": "2.6.1",
"jsreport-xlsx": "2.5.0",
"jszip": "3.5.0",
"minio": "7.0.17",
"node-fetch": "2.6.1",
"pdf2image": "1.2.3",
"serve-favicon": "2.5.0",
"uuid": "8.3.1"
},
"peerDependencies": {
"@mmstudio/config": "*",
"log4js": "*"
},
"devDependencies": {
"@mmstudio/config": "latest",
"@types/bl": "latest",
"@types/cookie-parser": "latest",
"@types/errorhandler": "latest",
"@types/express": "latest",
"@types/express-form-data": "latest",
"@types/ffprobe": "latest",
"@types/ffprobe-static": "latest",
"@types/jsreport-core": "latest",
"@types/jsreport-html-embedded-in-docx": "latest",
"@types/jsreport-html-to-xlsx": "latest",
"@types/jsreport-phantom-pdf": "latest",
"@types/jsreport-xlsx": "latest",
"@types/jszip": "latest",
"@types/minio": "latest",
"@types/node": "latest",
"@types/node-fetch": "latest",
"@types/pdf2image": "latest",
"@types/serve-favicon": "latest",
"@types/uuid": "latest",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"ava": "latest",
"del-cli": "latest",
"eslint": "latest",
"eslint-config-prettier": "latest",
"eslint-plugin-import": "latest",
"log4js": "latest",
"typescript": "next"
}
}