-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
93 lines (93 loc) · 2.8 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
{
"name": "leanote-desktop-react",
"version": "0.4.0",
"description": "Leanote Desktop App, based on Electron",
"main": "./lib/main.js",
"scripts": {
"build": "webpack -p --config ./webpack.config.prod.js",
"release": "electron-packager . 'Leanote Lite' --icon=static/images/leanote --out=release --ignore=src --ignore=docs --overwrite=true",
"patch": "tar -zcf release/Patch.tar.gz static package.json",
"client": "electron . --dev",
"start": "electron . --dev & node ./devServer.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LucasYuNju/leanote-desktop-react.git"
},
"keywords": [
"electron",
"react",
"leanote",
"markdown",
"note"
],
"author": "Lucas Yu <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/LucasYuNju/leanote-desktop-react/issues"
},
"homepage": "https://github.com/LucasYuNju/leanote-desktop-react#readme",
"dependencies": {
"classnames": "^2.2.5",
"electron": "^9.1.0",
"event-emitter": "^0.3.4",
"fs-extra": "^2.0.0",
"humps": "^2.0.0",
"localforage": "^1.4.3",
"lodash": "^4.16.6",
"marked": "^0.3.6",
"markup-it": "^3.3.0",
"moment": "^2.15.1",
"normalizr": "^2.2.1",
"objectid-browser": "0.0.1",
"octicons": "^3.5.0",
"optimist": "^0.6.1",
"path-to-regexp": "^1.7.0",
"react": "^15.4.2",
"react-addons-css-transition-group": "^15.4.2",
"react-dom": "^15.3.2",
"react-redux": "^4.4.5",
"redux": "^3.6.0",
"redux-persist": "^4.0.0-beta1",
"redux-thunk": "^2.1.0",
"request": "^2.79.0",
"semver": "^5.3.0",
"slate": "^0.16.9"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-eslint": "^6.1.2",
"babel-loader": "^6.2.5",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0",
"concurrently": "^2.2.0",
"css-loader": "^0.25.0",
"electron-packager": "^8.5.1",
"eslint": "^3.4.0",
"eslint-config-airbnb": "^10.0.1",
"eslint-loader": "^1.5.0",
"eslint-plugin-import": "^1.14.0",
"eslint-plugin-jsx-a11y": "^2.2.1",
"eslint-plugin-react": "^6.2.0",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"html-webpack-plugin": "^2.22.0",
"json-loader": "^0.5.4",
"less": "^2.7.1",
"less-loader": "^2.2.3",
"node-fetch": "^1.6.3",
"redux-devtools": "^3.3.1",
"redux-devtools-dock-monitor": "^1.1.1",
"redux-devtools-log-monitor": "^1.1.1",
"style-loader": "^0.13.1",
"unzip": "^0.1.11",
"url-loader": "^0.5.7",
"webpack": "^1.13.3",
"webpack-dev-middleware": "^1.8.1",
"webpack-dev-server": "^1.16.3"
}
}