This repository has been archived by the owner on Jun 13, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
103 lines (103 loc) · 2.52 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": "virena",
"version": "0.5.0",
"description": "",
"main": "./main.js",
"scripts": {
"test": "cross-env NODE_ENV=test jest",
"start-dev": "export NODE_ENV=development && electron .",
"start-prod": "export NODE_ENV=production && electron .",
"dev": "webpack-dev-server --mode development",
"build": "webpack --mode production",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"dist-all": "electron-builder -mwl",
"dist-l": "electron-builder -l",
"dist-w": "electron-builder -w"
},
"author": "Virena <gerretkubota@gmail.com>",
"license": "ISC",
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.4",
"@fortawesome/react-fontawesome": "^0.1.3",
"@material-ui/core": "^3.1.2",
"@material-ui/icons": "^3.0.1",
"axios": "^0.18.0",
"connected-react-router": "^4.5.0",
"history": "^4.7.2",
"mysql2": "^1.6.1",
"pg": "^7.4.3",
"pg-hstore": "^2.3.2",
"prettier": "^1.14.3",
"qs": "^6.5.2",
"react": "^16.5.1",
"react-dom": "^16.5.1",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"react-sortable-tree": "^2.2.0",
"redux-thunk": "^2.3.0",
"sequelize": "^4.39.0"
},
"devDependencies": {
"@babel/core": "^7.0.1",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.2",
"css-loader": "^1.0.0",
"electron": "^2.0.9",
"electron-builder": "^20.28.4",
"express": "^4.16.3",
"file-loader": "^2.0.0",
"pg-promise": "^8.4.6",
"prop-types": "^15.6.2",
"redux": "^4.0.0",
"style-loader": "^0.23.0",
"webpack": "^4.19.0",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.8",
"webpack-node-externals": "^1.7.2"
},
"build": {
"asar": true,
"asarUnpack": "assets",
"appId": "com.viserion.elec",
"files": [
"dist/",
"assets/",
"node_modules/",
"index.html",
"package.json",
"main.js",
"login.html",
"login.js",
"githubLogin.js",
"src/styles/style.css",
"src/styles/bootstrap-social.css"
],
"dmg": {
"contents": [
{
"x": 110,
"y": 150
},
{
"x": 240,
"y": 150,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"target": [
"AppImage",
"deb"
]
},
"win": {
"target": "nsis",
"icon": "build/icon.ico"
}
}
}