-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
82 lines (82 loc) · 2.74 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
{
"name": "comics-reader",
"version": "1.0.0",
"description": "a comic reader app for dm5",
"repository": {
"type": "git",
"url": "https://github.com/ComicsReader/reader.git"
},
"author": "Yukai Huang",
"license": "MIT",
"scripts": {
"build:dev": "cross-env NODE_ENV=development webpack --config webpack.config.js --progress --colors --watch",
"build:prod": "cross-env NODE_ENV=production webpack --config webpack.config.js --progress --colors",
"build:dll": "webpack --config webpack.dll.js",
"dev-server": "webpack-dev-server --content-base electron/ --inline --hot --colors",
"build:chrome": "npm run build:prod && zip extension_chrome.zip -r ./extension_chrome/ -x \"*/.*\""
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.8",
"babel-plugin-syntax-async-functions": "^6.13.0",
"babel-plugin-syntax-class-properties": "^6.13.0",
"babel-plugin-transform-class-properties": "^6.11.5",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-es2015-arrow-functions": "^6.8.0",
"babel-plugin-transform-object-rest-spread": "^6.16.0",
"babel-plugin-transform-react-jsx": "^6.8.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-stage-0": "^6.5.0",
"cross-env": "^3.1.3",
"css-loader": "^0.23.1",
"eslint": "^2.13.1",
"eslint-plugin-react": "^5.1.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"install": "^0.7.3",
"json-loader": "^0.5.4",
"less": "^2.7.0",
"less-loader": "^2.2.3",
"node-sass": "^3.8.0",
"npm": "^3.8.9",
"redux-devtools": "^3.3.1",
"sass-loader": "^4.0.0",
"style-loader": "^0.13.1",
"url-loader": "^0.5.7",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.16.2",
"webpack-livereload-plugin": "^0.8.1"
},
"dependencies": {
"bluebird": "^3.4.0",
"comics-dm5": "^0.0.11",
"echo-js": "^1.7.3",
"electron-window-state": "^3.0.4",
"later": "^1.2.0",
"lodash": "^4.12.0",
"material-ui": "^0.16.4",
"node-uuid": "^1.4.7",
"pouchdb": "^6.0.7",
"query-string": "^4.1.0",
"radium": "^0.18.1",
"react": "^15.3.2",
"react-document-title": "^2.0.2",
"react-dom": "^15.4.0",
"react-draggable": "^2.2.3",
"react-redux": "^4.4.5",
"react-router": "^2.4.1",
"react-router-redux": "^4.0.5",
"react-tap-event-plugin": "^2.0.1",
"redux": "^3.5.2",
"redux-devtools-extension": "^1.0.0",
"redux-logger": "^2.6.1",
"redux-persist": "^4.0.0-alpha5",
"redux-saga": "^0.11.1",
"redux-thunk": "^2.1.0",
"store": "^1.3.20"
}
}