forked from hackjutsu/Lepton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 2.72 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
{
"name": "Lepton",
"version": "1.3.0",
"description": "AWESOME Gist client for everyone, everywhere!",
"productName": "Lepton",
"main": "main.js",
"scripts": {
"lint": "eslint app",
"license": "license-checker --production --relativeLicensePath --json > license.json",
"watch": "webpack --watch",
"start": "electron ./main.js",
"pack": "webpack --display-modules",
"test": "webpack --display-modules",
"dist": "build",
"release": "build"
},
"repository": {
"type": "git",
"url": "https://github.com/hackjutsu/Lepton.git"
},
"keywords": [
"gist",
"js",
"electron",
"desktop"
],
"author": "CosmoX",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.21.0",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"css-loader": "^0.28.4",
"electron": "^1.7.2",
"electron-builder": "^18.3.5",
"eslint": "^3.12.2",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-react": "^7.0.1",
"eslint-plugin-standard": "^3.0.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.2",
"file-loader": "^0.11.1",
"html-loader": "^0.4.4",
"json-loader": "^0.5.4",
"license-checker": "^8.0.4",
"node-sass": "^4.1.1",
"redux-devtools": "^3.3.1",
"sass-loader": "^6.0.5",
"style-loader": "^0.18.1",
"text-loader": "0.0.1",
"url-loader": "^0.5.7",
"webpack": "^2.2.0",
"webpack-node-externals": "^1.5.4"
},
"dependencies": {
"autolinker": "^1.4.0",
"bluebird": "^3.4.7",
"codemirror": "^5.23.0",
"electron-context-menu": "^0.9.0",
"electron-localshortcut": "^1.1.0",
"electron-updater": "^1.4.2",
"fuse.js": "^3.0.0",
"highlight.js": "^9.9.0",
"human-readable-time": "^0.2.4",
"image-downloader": "^3.2.1",
"marked": "^0.3.6",
"moment": "^2.17.1",
"react": "^15.5.1",
"react-bootstrap": "^0.31.0",
"react-codemirror": "^1.0.0",
"react-dom": "^15.5.1",
"react-redux": "^5.0.1",
"react-split-pane": "^0.1.57",
"redux": "^3.6.0",
"redux-form": "^6.7.0",
"redux-thunk": "^2.1.0",
"request": "^2.79.0",
"request-promise": "^4.1.1",
"twitter-text": "^1.14.3",
"winston": "^2.3.0"
},
"build": {
"appId": "com.cosmox.lepton",
"mac": {
"category": "public.app-category.productivity",
"publish": [
"github"
]
},
"win": {
"target": "nsis",
"publish": [
"github"
]
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"linux": {
"target": "AppImage",
"publish": [
"github"
]
}
}
}