forked from edrlab/thorium-reader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
173 lines (173 loc) · 5.01 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
{
"name": "readium-desktop",
"version": "0.0.1-alpha1",
"description": "Desktop application to read ebooks",
"keywords": [
"readium",
"epub"
],
"engines": {
"node": ">=7.0.0",
"npm": ">=5.0.0"
},
"main": "dist/main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "npm rebuild --runtime=electron --target=1.6.6 --disturl=https://atom.io/download/atom-shell --build-from-source",
"build": "cross-env NODE_ENV=PROD webpack --config webpack.config.js && ncp src/package.json dist/package.json",
"build:dev:main": "webpack --config webpack.config.main.js",
"start": "npm run build && electron .",
"lint:ts": "tslint './src/**/*.ts' './src/**/*.tsx'",
"lint:editorconfig": "eclint check '**/*' '!.vscode/**/*' '!.git/**/*' '!node_modules/**/*' '!reader-NYPL/**/*' '!dist/**/*' '!**/.DS_Store'",
"lint": "npm run lint:editorconfig && npm run lint:ts",
"start:dev:renderer": "webpack-dev-server --config webpack.config.renderer.js",
"start:dev:main": "npm run build:dev:main && electron .",
"start:dev": "concurrently --kill-others \"npm run start:dev:renderer\" \"npm run start:dev:main\"",
"package": "npm run build && build --publish never",
"package-win": "npm run build && build --win --x64",
"package-linux": "npm run build && build --linux",
"package-all": "npm run build && build -mwl"
},
"repository": {
"type": "git",
"url": "[email protected]:edrlab/readium-desktop.git"
},
"author": {
"name": "EDRLab developers",
"organization": "EDRLab",
"email": "[email protected]",
"url": "http://github.com/edrlab/"
},
"license": "BSD-3-Clause",
"licenses": [
{
"type": "BSD-3-Clause",
"url": "http://opensource.org/licenses/BSD-3-Clause"
}
],
"bugs": {
"url": "https://github.com/edrlab/readium-desktop/issues"
},
"homepage": "https://github.com/edrlab/readium-desktop",
"bin": {
"electron": "./node_modules/.bin/electron"
},
"build": {
"productName": "ReadiumDesktop",
"appId": "io.github.edrlab.readium-desktop",
"dmg": {
"contents": [
{
"x": 410,
"y": 150,
"type": "link",
"path": "/Applications"
},
{
"x": 130,
"y": 150,
"type": "file"
}
]
},
"files": [
"node_modules/",
"assets/",
"index.html",
"styles.css",
"renderer.js",
"main.js",
"package.json"
],
"directories": {
"buildResources": "resources",
"output": "release",
"app": "dist"
},
"win": {
"target": "nsis"
},
"linux": {
"target": [
"deb",
"AppImage"
]
}
},
"dependencies": {
"class-validator": "^0.6.8",
"commonmark": "^0.27.0",
"express": "^4.15.4",
"follow-redirects": "^1.2.4",
"font-awesome": "^4.7.0",
"i18next": "^7.2.3",
"inversify": "^3.3.0",
"inversify-inject-decorators": "^3.0.1",
"jsondown": "^0.1.1",
"material-ui": "^0.17.4",
"opds-feed-parser": "0.0.13",
"portfinder": "^1.0.13",
"pouchdb-core": "^6.3.4",
"r2-streamer-js": "github:edrlab/r2-streamer-js-dist",
"react": "^15.6.1",
"react-card-flip": "0.0.4",
"react-dom": "^15.6.1",
"react-dropzone": "^3.13.4",
"react-redux": "^5.0.6",
"react-tap-event-plugin": "^2.0.1",
"redux": "^3.7.2",
"redux-saga": "^0.15.6",
"reflect-metadata": "^0.1.10",
"request": "^2.81.0",
"tmp": "0.0.33",
"uuid": "^3.1.0"
},
"devDependencies": {
"@types/commonmark": "^0.22.29",
"@types/express": "^4.0.37",
"@types/i18next": "^2.3.40",
"@types/material-ui": "^0.16.60",
"@types/pouchdb-core": "^6.1.7",
"@types/react": "^15.6.2",
"@types/react-dom": "^0.14.23",
"@types/react-dropzone": "0.0.32",
"@types/react-redux": "^4.4.47",
"@types/react-tap-event-plugin": "0.0.30",
"@types/redux": "^3.6.31",
"@types/redux-saga": "^0.10.5",
"@types/reflect-metadata": "0.0.5",
"@types/request": "^2.0.3",
"@types/tmp": "0.0.33",
"@types/uuid": "^2.0.30",
"ajv": "^5.2.2",
"asar": "^0.13.0",
"awesome-typescript-loader": "^3.1.2",
"aws-sdk": "^2.108.0",
"concurrently": "^3.4.0",
"cross-env": "^5.0.1",
"css-loader": "^0.28.7",
"eclint": "^2.1.0",
"electron": "1.6.11",
"electron-builder": "^19.27.7",
"electron-builder-http": "^19.27.5",
"extract-text-webpack-plugin": "^3.0.0",
"file-loader": "^0.10.1",
"html-webpack-plugin": "^2.28.0",
"ncp": "latest",
"node-loader": "^0.6.0",
"node-pre-gyp": "^0.6.36",
"react-hot-loader": "^1.3.1",
"rimraf": "latest",
"source-map-loader": "^0.1.6",
"style-loader": "^0.16.1",
"tslint": "^4.5.1",
"typescript": "^2.5.2",
"uglify-js": "git://github.com/mishoo/UglifyJS2.git#harmony-v2.8.22",
"webpack": "^3.5.0",
"webpack-dev-server": "^2.7.1"
},
"optionalDependencies": {
"pouchdb-adapter-leveldb": "^6.3.4",
"leveldown": "^1.7.2"
}
}