forked from PandaWarrior63/RetailShop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 4.2 KB
/
package.json
File metadata and controls
130 lines (130 loc) · 4.2 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
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
{
"name": "pharmacy-pos-frontend",
"version": "0.1.0",
"private": true,
"author": "LifePill",
"author_email": "tharinduimalka915@gmail.com",
"description": "pharmacy-pos-frontend is the frontend application for a modern Pharmacy Point of Sale (POS) system, developed by LifePill. This user-friendly desktop application provides an intuitive interface for managing pharmacy sales, inventory, and customer interactions. Empower your pharmacy staff with efficient tools for processing transactions, tracking product availability, and enhancing customer service. Built with the latest web technologies, our frontend ensures a seamless and responsive experience, making it an essential component of a comprehensive Pharmacy POS solution.",
"homepage": "./",
"main": "public/electron.js",
"dependencies": {
"@radix-ui/react-scroll-area": "^1.0.5",
"@reduxjs/toolkit": "^2.2.1",
"@tanstack/react-table": "^8.11.0",
"@testing-library/user-event": "^14.5.2",
"@types/axios": "^0.14.0",
"@types/jspdf": "^2.0.0",
"@types/node": "^16.18.68",
"@types/react": "^18.2.45",
"@types/react-chartjs-2": "^2.5.7",
"@types/react-dom": "^18.2.17",
"@types/xlsx": "^0.0.36",
"axios": "^1.6.8",
"chart.js": "^4.4.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"electron-localshortcut": "^3.2.1",
"electron-pos-printer": "^1.3.7",
"fs-extra": "^11.2.0",
"js-cookie": "^3.0.5",
"jspdf": "^2.5.1",
"jspdf-autotable": "^3.8.2",
"lottie-react": "^2.4.0",
"lucide-react": "^0.299.0",
"moment": "^2.29.4",
"path-browserify": "^1.0.1",
"react": "^18.2.0",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.12.0",
"react-live-clock": "^6.1.18",
"react-redux": "^9.1.0",
"react-router-dom": "^6.20.1",
"react-scripts": "5.0.1",
"react-spring": "^9.7.3",
"react-toastify": "^10.0.5",
"react-tooltip": "^5.26.4",
"sonarqube-scanner": "^3.5.0",
"sql.js": "^1.11.0",
"sqlite3": "^5.0.0",
"tailwind-merge": "^2.1.0",
"tailwindcss-animate": "^1.0.7",
"tsc": "^2.0.4",
"web-vitals": "^2.1.4",
"xlsx": "^0.18.5"
},
"scripts": {
"test": "jest",
"test:browser": "jest --config=jest.config.js",
"test:node": "jest --config=jest.config.node.js",
"start": "react-scripts start",
"build": "react-scripts build",
"eject": "react-scripts eject",
"electron:start": "concurrently -k \"cross-env BROWSER=none yarn start\" \"wait-on http://127.0.0.1:3000 && electronmon .\"",
"electron:package:mac": "yarn build && electron-builder -m -c.extraMetadata.main=build/electron.js",
"electron:package:win": "yarn build && electron-builder -w -c.extraMetadata.main=build/electron.js",
"electron:package:linux": "yarn build && electron-builder -l -c.extraMetadata.main=build/electron.js"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"build": {
"appId": "com.electron.retail",
"productName": "RetailShopPos",
"files": [
"build/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "public"
},
"mac": {
"target": "dmg"
},
"win": {
"target": "nsis"
},
"linux": {
"target": "deb"
}
},
"devDependencies": {
"@electron-forge/publisher-github": "^7.4.0",
"@testing-library/jest-dom": "^6.4.5",
"@testing-library/react": "^15.0.7",
"@types/jest": "^29.5.12",
"@types/js-cookie": "^3.0.6",
"@types/sql.js": "^1.4.9",
"@types/testing-library__react": "^10.2.0",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"cypress": "^13.6.6",
"electron": "^25.0.0",
"electron-builder": "^24.9.1",
"electronmon": "^2.0.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-html-reporters": "^3.1.7",
"tailwindcss": "^3.3.6",
"ts-jest": "^29.1.2",
"wait-on": "^7.2.0"
},
"electronmon": {
"patterns": ["!database/**","*.db"]
}
}