-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
118 lines (118 loc) · 3.25 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "@chuangker/nice-mail",
"version": "1.5.0",
"description": "Nice Mail 是一款以 Markdown 为基础的邮件编辑器。",
"main": "app.js",
"bin": {
"nice-mail": "./bin/nice-mail"
},
"engines": {
"node": ">=8.9"
},
"scripts": {
"prepublishOnly": "npm run build",
"build": "rimraf dist && webpack --config build/webpack.prod.conf.js --progress --hide-modules",
"dev": "nodemon app",
"test": "cross-env NODE_ENV=test",
"lint": "eslint --ignore-path .gitignore --ignore-pattern 'views/lib/*' . --quiet --ext .vue,.js"
},
"author": "chuangker",
"license": "MIT",
"keywords": [
"mail",
"mail-cli",
"cli"
],
"files": [
"api",
"bin",
"biuld",
"config",
"dist",
"middlewares",
"public",
"templates",
"util"
],
"repository": {
"type": "git",
"url": "git+https://github.com/chuangker/nice-mail.git"
},
"bugs": {
"url": "https://github.com/chuangker/nice-mail/issues"
},
"homepage": "https://github.com/chuangker/nice-mail",
"dependencies": {
"axios": "^0.17.1",
"commander": "^2.19.0",
"cross-env": "^5.2.0",
"dom-to-image": "^2.6.0",
"email-templates": "^3.6.1",
"fs-extra": "^5.0.0",
"html-pdf": "^2.2.0",
"jquery": "^3.3.1",
"koa": "^2.6.2",
"koa-body": "^2.6.0",
"koa-favicon": "^2.0.1",
"koa-onerror": "^4.1.0",
"koa-router": "^7.4.0",
"koa-static-cache": "^5.1.2",
"lodash": "^4.17.11",
"markdown-it": "^8.4.2",
"markdown-it-abbr": "^1.0.4",
"markdown-it-deflist": "^2.0.3",
"markdown-it-emoji": "^1.4.0",
"markdown-it-footnote": "^3.0.1",
"markdown-it-ins": "^2.0.0",
"markdown-it-katex": "^2.0.3",
"markdown-it-mark": "^2.0.0",
"markdown-it-sub": "^1.0.0",
"markdown-it-sup": "^1.0.0",
"markdown-it-task-lists": "^2.1.1",
"moment": "^2.23.0",
"nodemailer-plugin-inline-base64": "^2.1.1",
"semver": "^5.6.0",
"vue": "^2.5.21",
"vue-router": "^3.0.2"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"babel-loader": "^7.1.5",
"babel-preset-env": "^1.7.0",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-html": "^4.0.6",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.11",
"friendly-errors-webpack-plugin": "^1.7.0",
"html-webpack-plugin": "^2.30.1",
"koa-webpack-middleware": "^1.0.7",
"nodemon": "^1.18.9",
"optimize-css-assets-webpack-plugin": "^3.2.0",
"postcss": "^6.0.23",
"postcss-cssnext": "^3.1.0",
"postcss-loader": "^2.1.6",
"postcss-partial-import": "^4.1.0",
"postcss-url": "^7.3.2",
"postcss-utils": "^1.0.2",
"precss": "^3.1.2",
"raw-loader": "^0.5.1",
"rimraf": "^2.6.3",
"saladcss-bem": "0.0.2",
"url-loader": "^0.6.2",
"vue-loader": "^13.7.3",
"vue-markdown-loader": "^2.4.1",
"vue-style-loader": "^3.1.2",
"vue-template-compiler": "^2.5.21",
"webpack": "^3.12.0",
"webpack-hot-middleware": "^2.24.3",
"webpack-merge": "^4.2.1"
}
}