-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.87 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 3.87 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
{
"name": "tradiz",
"version": "1.492.0",
"description": "Tradiz cash register and management application",
"author": "Tradiz <contact@tradiz.fr>",
"private": true,
"license": "MIT",
"main": "electron/main.js",
"scripts": {
"clean": "shx rm -rf .next dist",
"dev": "next dev",
"build": "next build",
"start": "next start -p 3001",
"lint": "eslint .",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"nuke": "shx rm -rf node_modules package-lock.json || true",
"prepare": "husky",
"migrate": "bun scripts/migrate-sheets-to-postgres.ts",
"export-firestore": "bun scripts/firestore-to-postgres.ts",
"test-db": "bun scripts/test-postgres-connection.ts",
"electron:dev": "electron .",
"electron:build": "next build",
"electron:dist": "next build && shx rm -rf dist && bun electron/scripts/prepare-standalone.js && electron-builder",
"electron:dist:win": "next build && shx rm -rf dist && bun electron/scripts/prepare-standalone.js && electron-builder --win",
"electron:dist:win:ci": "next build && shx rm -rf dist && bun electron/scripts/prepare-standalone.js && electron-builder --win --publish never",
"electron:publish:win": "next build && shx rm -rf dist && bun electron/scripts/prepare-standalone.js && electron-builder --win --publish always",
"electron:dist:linux": "next build && shx rm -rf dist && bun electron/scripts/prepare-standalone.js && electron-builder --linux",
"electron:dist:linux:ci": "next build && shx rm -rf dist && bun electron/scripts/prepare-standalone.js && electron-builder --linux --publish never",
"electron:publish:linux": "next build && shx rm -rf dist && bun electron/scripts/prepare-standalone.js && electron-builder --linux --publish always"
},
"dependencies": {
"@dnd-kit/core": "latest",
"@dnd-kit/sortable": "latest",
"@dnd-kit/utilities": "latest",
"@neondatabase/serverless": "latest",
"@solana/pay": "0.2.6",
"@solana/spl-token": "latest",
"@solana/web3.js": "3.0.0-rc.2",
"@stafyniaksacha/facturx": "latest",
"@tabler/icons-react": "latest",
"@tailwindcss/postcss": "latest",
"@types/nodemailer": "latest",
"@types/pg": "latest",
"bignumber.js": "9.1.2",
"caniuse-lite": "latest",
"dotenv": "latest",
"electron-updater": "latest",
"eslint-plugin-jsx-a11y": "latest",
"mysql2": "latest",
"next": "latest",
"node-thermal-printer": "latest",
"nodemailer": "latest",
"pg": "latest",
"postcss": "latest",
"react": "latest",
"react-dom": "latest",
"recharts": "latest",
"serialport": "latest",
"tailwind-merge": "latest",
"tailwindcss": "latest",
"xlsx": "https://cdn.sheetjs.com/xlsx-latest/xlsx-latest.tgz"
},
"devDependencies": {
"@commitlint/cli": "latest",
"@commitlint/config-conventional": "latest",
"@eslint/eslintrc": "latest",
"@eslint/js": "latest",
"@testing-library/jest-dom": "latest",
"@testing-library/react": "latest",
"@types/bs58": "4.0.4",
"@types/jest": "latest",
"@types/node": "latest",
"@types/react": "latest",
"@types/react-dom": "latest",
"@typescript-eslint/eslint-plugin": "latest",
"@vitest/coverage-v8": "latest",
"baseline-browser-mapping": "latest",
"electron": "latest",
"electron-builder": "latest",
"encoding": "latest",
"eslint": "latest",
"eslint-config-next": "latest",
"eslint-config-prettier": "latest",
"eslint-plugin-prettier": "latest",
"eslint-plugin-react": "latest",
"eslint-plugin-react-hooks": "latest",
"husky": "latest",
"jest": "latest",
"jest-environment-jsdom": "latest",
"shx": "latest",
"typescript": "^5.9.3",
"typescript-eslint": "latest",
"vitest": "latest"
},
"trustedDependencies": [
"protobufjs",
"unrs-resolver",
"electron",
"electron-builder",
"@serialport/bindings-cpp"
]
}