forked from IceEnd/Yosoro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 3.73 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
{
"name": "yosoro-desktop",
"productName": "Yosoro",
"version": "1.0.4",
"description": "Beautiful Cloud Drive Markdown NoteBook Desktop App, based on React, Redux, Webpack, React Hot Loader for rapid application development",
"main": "app/renderer/index.js",
"scripts": {
"dev:electron-main": "cross-env NODE_ENV='development' electron -r babel-register ./app/main/",
"dev:electron-render": "cross-env NODE_ENV='development' webpack-dev-server --config config/webpack.config.babel.js --no-info --colors --inline",
"build:web": "cross-env NODE_ENV='production' gulp --gulpfile config/gulp.babel.js --cwd . --mode web",
"build:electron": "cross-env NODE_ENV='production' gulp --gulpfile config/gulp.babel.js --cwd . --mode electron",
"build:all": "cross-env NODE_ENV='production' gulp --gulpfile config/gulp.babel.js --cwd . --mode all",
"packager:mac": "electron-packager ./lib Yosoro --overwrite --platform=darwin --arch=x64 --out=out --icon=assets/icons/osx/app.icns",
"packager:win": "electron-packager ./lib Yosoro --overwrite --platform=win32 --arch=ia32 --out=out --icon=assets/icons/win/app.ico",
"packager:win:64": "electron-packager ./lib Yosoro --overwrite --platform=win32 --arch=x64 --out=out --icon=assets/icons/win/app.ico",
"packager:linux": "electron-packager ./lib Yosoro --overwrite --platform=linux --arch=x64 --out=out",
"lint": "concurrently \"eslint app config --ext .js,.jsx\" \"sass-lint -v -q\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/IceEnd/Yosoro.git"
},
"dependencies": {
"antd": "^3.0.0",
"codemirror": "^5.36.0",
"deep-eql": "^3.0.1",
"fs-extra": "^5.0.0",
"history": "^4.7.2",
"marked": "^0.3.12",
"node-fetch": "^1.3.3",
"node-schedule": "^1.3.0",
"prop-types": "^15.6.0",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"react-redux": "^5.0.6",
"react-resize-detector": "^2.3.0",
"react-router-dom": "^4.2.2",
"react-router-redux": "^4.0.8",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-saga": "^0.16.0",
"uuid": "^3.1.0",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"assets-webpack-plugin": "^3.5.1",
"babel-cli": "^6.22.1",
"babel-core": "^6.22.1",
"babel-eslint": "^7.1.1",
"babel-loader": "^7.1.2",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-polyfill": "^6.22.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.22.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "^6.18.0",
"babel-register": "^6.22.0",
"chokidar": "^2.0.0",
"concurrently": "^3.5.1",
"cross-env": "^5.1.1",
"css-loader": "^0.28.7",
"del": "^3.0.0",
"devtron": "^1.4.0",
"electron": "^1.8.6",
"electron-packager": "^9.1.0",
"electron-watch": "^1.0.5",
"eslint": "^4.10.0",
"eslint-config-alchemy": "^0.1.10",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-jsx-a11y": "6.0.2",
"eslint-plugin-react": "7.1.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.5",
"gulp": "3.9.1",
"gulp-clean-css": "^3.9.2",
"gulp-html-replace": "^1.6.2",
"gulp-rename": "^1.2.2",
"gulp-util": "^3.0.8",
"node-sass": "^4.7.2",
"pre-commit": "1.2.2",
"react-hot-loader": "^3.1.2",
"sass-lint": "^1.12.1",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.0",
"uglifyjs-webpack-plugin": "^1.1.6",
"url-loader": "^0.6.2",
"watchify": "^3.9.0",
"webpack": "^3.8.1",
"webpack-bundle-analyzer": "^2.9.2",
"webpack-dev-server": "^2.9.4"
},
"resolutions": {
"natives": "1.1.3"
},
"author": "Alchemy",
"license": "GPL-3.0",
"pre-commit": [
"lint"
]
}