-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.28 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 3.28 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
{
"name": "ai-interviewer",
"version": "1.0.0",
"description": "AI-powered interview practice application with Lemonade Server integration",
"main": "dist/electron/src/electron_app/main.js",
"scripts": {
"start": "electron .",
"dev": "concurrently \"npm run dev:react\" \"npm run dev:electron\"",
"dev:react": "vite",
"dev:electron": "tsc -p tsconfig.electron.json && concurrently \"tsc -p tsconfig.electron.json -w\" \"cross-env NODE_ENV=development electron dist/electron/src/electron_app/main.js\"",
"dev:linux": "concurrently \"npm run dev:react\" \"npm run dev:electron:linux\"",
"dev:electron:linux": "tsc -p tsconfig.electron.json && concurrently \"tsc -p tsconfig.electron.json -w\" \"cross-env NODE_ENV=development electron --no-sandbox --disable-setuid-sandbox dist/electron/src/electron_app/main.js\"",
"build": "tsc -p tsconfig.electron.json && vite build",
"build:electron": "electron-builder",
"build:electron:dir": "electron-builder --dir",
"test": "jest",
"lint": "eslint src",
"inspect": "node scripts/inspect-interview.js",
"inspect:log": "node scripts/inspect-interview.js --log"
},
"keywords": [
"interview",
"ai",
"practice",
"electron",
"lemonade-server"
],
"author": "",
"license": "MIT",
"dependencies": {
"axios": "^1.15.0",
"clsx": "^2.1.0",
"date-fns": "^4.1.0",
"electron-store": "^11.0.2",
"form-data": "^4.0.0",
"lucide-react": "^1.8.0",
"mammoth": "^1.12.0",
"openai": "^6.34.0",
"pdf-parse": "^2.4.5",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-router-dom": "^7.14.0",
"tailwind-merge": "^3.5.0",
"uuid": "^13.0.0",
"zustand": "^5.0.12"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@tailwindcss/vite": "^4.0.0",
"@types/node": "^25.2.1",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^8.54.0",
"@typescript-eslint/parser": "^8.54.0",
"@vitejs/plugin-react": "^5.1.3",
"autoprefixer": "^10.4.17",
"concurrently": "^9.2.1",
"cross-env": "^10.1.0",
"electron": "^40.2.1",
"electron-builder": "^26.7.0",
"eslint": "^9.39.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.16",
"globals": "^15.14.0",
"jest": "^30.2.0",
"postcss": "^8.4.33",
"tailwindcss": "^4.1.18",
"ts-node": "^10.9.2",
"typescript": "^5.3.3",
"typescript-eslint": "^8.54.0",
"vite": "^7.3.1"
},
"build": {
"appId": "com.interviewer.app",
"productName": "Interviewer",
"directories": {
"output": "release"
},
"files": [
"dist/electron/**/*",
"dist/renderer/**/*",
"package.json"
],
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
},
{
"target": "dir",
"arch": [
"x64"
]
}
],
"signAndEditExecutable": false
},
"mac": {
"target": "dmg"
},
"linux": {
"target": [
{
"target": "AppImage",
"arch": ["x64"]
}
],
"category": "Utility"
},
"forceCodeSigning": false
}
}