-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.51 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.51 KB
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
{
"name": "slawpharmacy",
"version": "1.0.0",
"description": "Pharmacy database",
"license": "MIT",
"private": true,
"author": "Slaw Company",
"engines": {
"node": ">=9.0.0",
"npm": ">=5.0.0",
"yarn": ">=1.0.0"
},
"browserslist": [
"last 4 versions"
],
"main": "main.js",
"scripts": {
"prod": "cross-env NODE_ENV=production webpack --mode production --config webpack.build.config.js && electron --noDevServer .",
"start": "cross-env NODE_ENV=development webpack-dev-server --hot --host 0.0.0.0 --config=./webpack.dev.config.js --mode development",
"build": "node node_modules/cross-env/src/bin/cross-env.js NODE_ENV=production webpack --config webpack.build.config.js --mode production",
"build-Win64": "electron-builder build --win --x64"
},
"dependencies": {
"@material-ui/core": "^4.10.1",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.56",
"array-unique": "^0.3.2",
"cron": "^1.8.2",
"electron-store": "^5.2.0",
"fontsource-roboto": "^2.2.6",
"material-table": "^1.59.0",
"mysql": "^2.18.1",
"pdfmake": "^0.1.65",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-router-dom": "^5.2.0",
"recharts": "^1.8.5"
},
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-react": "^7.9.4",
"babel-loader": "^8.1.0",
"babel-minify-webpack-plugin": "^0.3.1",
"babili-webpack-plugin": "^0.1.2",
"cross-env": "^7.0.2",
"css-loader": "^3.5.3",
"electron": "^9.0.0",
"electron-builder": "^22.9.1",
"electron-devtools-installer": "^3.0.0",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.3.0",
"mini-css-extract-plugin": "^0.9.0",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-nested": "^4.2.1",
"postcss-preset-env": "^6.7.0",
"postcss-pxtorem": "^5.1.1",
"style-loader": "^1.2.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0",
"webpack-obfuscator": "^1.3.0"
},
"build": {
"productName": "Slaw Pharmacy",
"appId": "org.slawpharmacy.app",
"icon": "E:/SP/resources/icon.ico",
"files": [
"dist/",
"node_modules/",
"main.js",
"package.json"
],
"dmg": {
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
},
"win": {
"target": [
"msi"
]
}
}
}