-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemp_old_package.json
More file actions
107 lines (107 loc) · 6.08 KB
/
temp_old_package.json
File metadata and controls
107 lines (107 loc) · 6.08 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
{
"name": "thomas-books",
"version": "0.2.0",
"private": true,
"main": "electron/main.js",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"electron:dev": "concurrently \"cross-env BROWSER=none npm run dev\" \"wait-on http://localhost:3000 && cross-env NODE_ENV=development electron .\"",
"electron:build": "cross-env SKIP_PREFLIGHT_CHECK=true next build && electron-builder",
"electron:build:win": "cross-env SKIP_PREFLIGHT_CHECK=true next build && electron-builder --win",
"electron:build:win:fast": "electron-builder --win --config.compression=store",
"export": "next build"
},
"dependencies": {
"@google/generative-ai": "^0.24.1",
"@xenova/transformers": "^2.17.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.0.0",
"date-fns": "^2.30.0",
"docx": "^9.5.1",
"file-saver": "^2.0.5",
"heic-convert": "^2.1.0",
"heic-to": "^1.3.0",
"heic2any": "^0.0.4",
"jspdf": "^3.0.4",
"jszip": "^3.10.1",
"lucide-react": "^0.294.0",
"mime-types": "^3.0.2",
"next": "^14.0.4",
"plaid": "^40.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-plaid-link": "^4.1.1",
"recharts": "^2.10.3",
"tailwind-merge": "^2.1.0",
"tesseract.js": "^6.0.1",
"xlsx": "^0.18.5",
"zustand": "^4.4.7"
},
"devDependencies": {
"@playwright/test": "^1.57.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@types/file-saver": "^2.0.7",
"@types/jest": "^30.0.0",
"@types/node": "^20.10.4",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"autoprefixer": "^10.4.16",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"electron": "^39.2.7",
"electron-builder": "^26.0.12",
"eslint": "^8.55.0",
"eslint-config-next": "^14.0.4",
"ignore-loader": "^0.1.2",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"postcss": "^8.4.32",
"tailwindcss": "^3.3.6",
"ts-jest": "^29.4.6",
"typescript": "^5.3.3",
"wait-on": "^9.0.3"
},
"build": {
"appId": "com.booksmaster.app",
"productName": "Booksmaster",
"asar": false,
"buildDependenciesFromSource": false,
"nodeGypRebuild": false,
"npmRebuild": false,
"directories": {
"output": "dist",
"buildResources": "public"
},
"files": [
"electron/main.js",
"electron/preload.js",
"out/**/*",
"!out/ThomasBooksSetup.exe",
"!out/**/*.exe",
"package.json",
"!node_modules"
],
"extraResources": [],
"win": {
"target": {
"target": "nsis",
"arch": [
"x64"
]
}
},
"nsis": {
"oneClick": true,
"perMachine": false,
"createDesktopShortcut": true,
"createStartMenuShortcut": false
}
}
}