-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
91 lines (91 loc) · 2.51 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
{
"name": "hexo-client",
"version": "2.0.2",
"productName": "Hexo 客户端",
"description": "Desktop app for Hexo.",
"main": "index.js",
"build": {
"appId": "name.codeartisan.hexo",
"copyright": "Copyright © 2017 Artisan.",
"files": [
"./app",
"./index.js",
"./renderer.js",
"./style.css",
"./public"
],
"publish": {
"provider": "github"
}
},
"scripts": {
"start": "./node_modules/.bin/webpack --env development -w --config webpack/webpack.config.js",
"client": "./node_modules/.bin/cross-env NODE_ENV=development ./node_modules/.bin/electron .",
"prepack": "./node_modules/.bin/webpack --env production --config webpack/webpack.config.js",
"pack": "npm run prepack && build",
"pack:win": "npm run prepack && build --w",
"pack:linux": "npm run prepack && build --linux",
"pack:mas": "npm run prepack && build --mac",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/code-artisan/hexo-client.git"
},
"keywords": [
"hexo",
"hexo-client",
"electron"
],
"author": "artisan",
"license": "GPL-3.0",
"dependencies": {
"codemirror": "^5.26.0",
"editor.md": "^1.5.0",
"electron-log": "^2.2.7",
"element-react": "^1.0.0",
"element-theme-default": "^1.3.3",
"events": "^1.1.1",
"fs-jetpack": "^1.0.0",
"glob": "^7.1.2",
"hexo-cli": "^1.0.3",
"hexo-server": "^0.2.1",
"jquery": "^3.2.1",
"log4js": "^2.0.1",
"marked": "^0.3.6",
"moment": "^2.18.1",
"normalize.css": "^7.0.0",
"pangu": "^3.3.0",
"react": "^16.1.1",
"react-dom": "^16.1.1",
"react-router": "^3.0.5",
"shelljs": "^0.7.8",
"underscore": "^1.8.3",
"uuid": "^3.0.1"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"cross-env": "^5.0.1",
"css-loader": "^0.28.1",
"electron": "~1.6.2",
"electron-updater": "^2.3.1",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"html-webpack-plugin": "^2.28.0",
"ignore-loader": "^0.1.2",
"node-sass": "^4.5.3",
"npm": "^5.0.3",
"sass-loader": "^6.0.5",
"shebang-loader": "0.0.1",
"style-loader": "^0.17.0",
"url": "^0.11.0",
"webpack": "^2.5.1",
"webpack-dev-server": "^2.4.5",
"webpack-merge": "^4.1.0"
}
}