-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.92 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.92 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
{
"name": "grademe",
"private": true,
"version": "1.1.0",
"type": "module",
"main": "dist-electron/main.js",
"scripts": {
"dev": "npm-run-all --parallel dev:react dev:electron",
"dev:react": "vite",
"dev:electron": "npm run transpile:electron && cross-env NODE_ENV=development electron .",
"build": "tsc -b && vite build && npm run cp:py",
"cp:py": "shx cp app-be/dist/main* app-be/dist/ollama_code_analysis* app-be/dist/ollama_rubric_generation* dist-electron/",
"lint": "eslint .",
"preview": "vite preview",
"transpile:electron": "tsc --project src/electron/tsconfig.json",
"dist:mac": "npm run transpile:electron && npm run build && electron-builder --mac --universal",
"dist:win": "npm run transpile:electron && npm run build && electron-builder --win --x64",
"dist:linux": "npm run transpile:electron && npm run build && electron-builder --linux --x64",
"test:e2e": "playwright test"
},
"build": {
"extraResources": [],
"win": {
"extraResources": [
{
"from": "app-be/dist/main.exe",
"to": "main.exe"
},
{
"from": "app-be/dist/ollama_code_analysis.exe",
"to": "ollama_code_analysis.exe"
},
{
"from": "app-be/dist/ollama_rubric_generation.exe",
"to": "ollama_rubric_generation.exe"
}
]
},
"mac": {
"extraResources": [
{
"from": "app-be/dist/main",
"to": "main"
},
{
"from": "app-be/dist/ollama_code_analysis",
"to": "ollama_code_analysis"
},
{
"from": "app-be/dist/ollama_rubric_generation",
"to": "ollama_rubric_generation"
}
]
},
"linux": {
"extraResources": [
{
"from": "app-be/dist/main",
"to": "main"
},
{
"from": "app-be/dist/ollama_code_analysis",
"to": "ollama_code_analysis"
},
{
"from": "app-be/dist/ollama_rubric_generation",
"to": "ollama_rubric_generation"
}
]
}
},
"dependencies": {
"@uiw/react-codemirror": "^4.25.4",
"cross-env": "^10.1.0",
"lucide-react": "^0.552.0",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.7.1",
"shx": "^0.4.0"
},
"devDependencies": {
"@eslint/js": "^9.30.1",
"@playwright/test": "^1.57.0",
"@types/jest": "^30.0.0",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"electron": "^37.2.4",
"electron-builder": "^26.4.0",
"eslint": "^9.30.1",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.3.0",
"jest": "^30.2.0",
"npm-run-all": "^4.1.5",
"ts-jest": "^29.4.6",
"typescript": "~5.8.3",
"typescript-eslint": "^8.35.1",
"vite": "^7.0.4"
}
}