-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
127 lines (127 loc) · 3.76 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
{
"name": "Libris",
"version": "0.1.2",
"main": "main.js",
"description": "Virtual library for kids",
"scripts": {
"start": "npm run build && npm run electron",
"postinstall": "install-app-deps",
"electron": "./node_modules/electron-prebuilt/dist/electron main.js",
"devtron": "./node_modules/electron-prebuilt/dist/electron dev.js",
"watch": "./node_modules/.bin/webpack-dev-server --config dev.webpack.js",
"electron-rebuild": "./node_modules/.bin/electron-rebuild",
"build": "NODE_ENV=production ./node_modules/.bin/webpack --config webpack.base.js",
"pack": "./node_modules/.bin/build --publish never",
"pack:linux": "./node_modules/.bin/build --linux",
"pack:win": "./node_modules/.bin/build --win"
},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-loader": "^6.2.10",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-object-rest-spread": "^6.22.0",
"babel-plugin-transform-react-display-name": "^6.22.0",
"babel-preset-es2015": "^6.22.0",
"babel-preset-react": "^6.22.0",
"babel-preset-stage-0": "^6.22.0",
"css-loader": "^0.26.1",
"cssrecipes-grid": "^1.0.0",
"electron-builder": "^13.11.1",
"electron-devtools-installer": "^2.1.0",
"electron-packager": "^8.5.1",
"electron-prebuilt": "^1.4.13",
"electron-rebuild": "^1.5.7",
"extract-text-webpack-plugin": "^2.0.0",
"file-loader": "^0.10.0",
"node-libs-browser": "^0.5.2",
"postcss": "^5.2.11",
"postcss-cssnext": "^2.9.0",
"postcss-import": "^9.1.0",
"postcss-loader": "^1.2.2",
"react-addons-css-transition-group": "^15.4.2",
"react-hot-loader": "^1.3.1",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.4",
"redbox-react": "^1.3.3",
"style-loader": "^0.12.3",
"stylelint": "^7.7.1",
"url-loader": "^0.5.7",
"webpack": "2.2.0-rc.7",
"webpack-dev-middleware": "^1.10.0",
"webpack-dev-server": "^1.16.2",
"webpack-hot-middleware": "^2.16.1",
"webpack-target-electron-renderer": "^0.4.0"
},
"dependencies": {
"babel-polyfill": "^6.22.0",
"co": "^4.6.0",
"electron-storage": "^1.0.7",
"epub": "^0.1.6",
"html-to-react": "^1.2.3",
"pdfjs-dist": "^1.7.316",
"promise": "^7.1.1",
"react": "^15.4.2",
"react-css-modules": "^4.1.0",
"react-dom": "^15.4.2",
"react-measure": "^1.4.5",
"react-pdf": "^0.0.10",
"react-pdf-pages": "^0.1.0",
"react-redux": "^5.0.2",
"react-router": "^3.0.2",
"react-router-redux": "^4.0.7",
"redux": "^3.6.0",
"redux-on-state-change": "^1.0.0",
"redux-thunk": "^2.2.0"
},
"author": {
"name": "Jhinel Arcaya, Joseph Perez, Daviannys Miquilena, Alcides Pacheco, Yandra Yepez",
"email": "[email protected]",
"url": "https://github.com/undefinerds"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/undefinerds/libris/issues"
},
"build": {
"productName": "Libris",
"appId": "org.undefinerds.libris",
"category": "public.education.books",
"files": [
"json/",
"public/",
"node_modules/",
"index.html",
"main.js",
"glass.png",
"config.json",
"canaima.json",
"bundle.js",
"package.json"
],
"linux": {
"target": [
"deb",
"AppImage"
],
"maintainer": "Jhinel Arcaya, Joseph Perez, Alcides Pacheco, Daviannys Miquilena",
"depends": [
"gconf2",
"gconf-service",
"libnss3"
]
},
"deb": {
"synopsis": "Virtual library for kids",
"compression": "xz"
},
"win": {
"title": "Libris"
}
},
"homepage": "https://github.com/undefinerds/libris#readme",
"engines": {
"node": "6"
}
}