-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
103 lines (103 loc) · 2.75 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
{
"name": "integradaBibliotecaV2",
"version": "2.0.0",
"main": "main.js",
"build": {
"productName": "integradaBiblioteca",
"appId": "org.tharyckgusmao.integradaBiblioteca",
"files": [
"main.js",
"dist/",
"node_modules/",
"dist/index.html",
"package.json"
],
"dmg": {
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
},
"win": {
"target": [
"nsis"
]
},
"linux": {
"target": [
"AppImage"
]
}
},
"scripts": {
"start": "CHOKIDAR_USEPOLLING=true NODE_ENV=development node server.js",
"build": "rimraf dist && webpack --config ./webpack.config.prod.js --progress --profile --colors",
"ele": "NODE_ENV=development electron ./electron/init.js ",
"devProd": "NODE_ENV=development npm run start && npm run ele",
"prod": "NODE_ENV=development electron ./main.js",
"package-all": "electron-builder -mwl",
"package-linux": "electron-builder --linux",
"package-win": "electron-builder --win --x64"
},
"author": "Tharyck Gusmao Metzker <thaka.gus@gmail.com>",
"email": "thaka.gus@gmail.com",
"license": "ISC",
"dependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"brfs": "^1.4.3",
"cheerio": "^1.0.0-rc.2",
"electron-image-resize": "^1.2.4",
"eslint": "^3.19.0",
"eslint-plugin-react": "^7.0.0",
"express": "^4.15.2",
"html-webpack-plugin": "^2.28.0",
"jimp": "^0.2.28",
"json-loader": "^0.5.7",
"pdfkit": "^0.8.3",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-flip-move": "^2.9.15",
"react-hot-loader": "^3.0.0-beta.7",
"react-redux": "^5.0.5",
"react-router": "^3.0.5",
"react-router-redux": "^4.0.8",
"redux": "^3.7.1",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"request-promise": "^4.2.1",
"requestretry": "^1.12.2",
"resizer": "0.0.6",
"rimraf": "^2.6.1",
"sharp": "^0.18.3",
"string-replace-webpack-plugin": "^0.1.3",
"transform-loader": "^0.2.4",
"webpack": "^2.5.1",
"webpack-dev-middleware": "^1.10.2",
"webpack-hot-middleware": "^2.18.0",
"webpack-stats-plugin": "^0.1.5"
},
"devDependencies": {
"babel-preset-react": "^6.24.1",
"css-loader": "^0.28.1",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"gsap": "^1.19.1",
"image-webpack-loader": "^3.3.1",
"postcss-loader": "^2.0.5",
"style-loader": "^0.17.0",
"styled-components": "^1.4.6",
"url-loader": "^0.5.8"
}
}