-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.98 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.98 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
{
"name": "assistant",
"version": "0.1.0",
"private": true,
"main": "public/electron.js",
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^6.4.8",
"@mui/material": "^6.4.8",
"@mui/x-date-pickers": "^7.28.0",
"@react-oauth/google": "^0.12.1",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.2.0",
"@testing-library/user-event": "^13.5.0",
"assert": "^2.1.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.1",
"dayjs": "^1.11.13",
"googleapis": "^146.0.0",
"groq": "^3.79.0",
"https-browserify": "^1.0.0",
"mic-recorder-to-mp3": "^2.2.2",
"os-browserify": "^0.3.0",
"prismjs": "^1.30.0",
"process": "^0.11.10",
"querystring-es3": "^0.2.1",
"react": "^19.0.0",
"react-app-rewired": "^2.2.1",
"react-dom": "^19.0.0",
"react-router-dom": "^7.4.0",
"react-scripts": "5.0.1",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"tesseract.js": "^6.0.0",
"url": "^0.11.4",
"util": "^0.12.5",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-scripts eject",
"electron-dev": "concurrently \"set BROWSER=none && npm start\" \"wait-on http://localhost:3000 && electron .\"",
"electron": "electron ."
},
"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"
]
},
"devDependencies": {
"concurrently": "^9.1.2",
"electron": "^35.0.2",
"electron-is-dev": "^3.0.1",
"events": "^3.3.0",
"node-polyfill-webpack-plugin": "^4.1.0",
"wait-on": "^8.0.3"
}
}