-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
129 lines (129 loc) · 3.37 KB
/
package.json
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
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "LinguifAI",
"description": "NLP App for CSV Data!",
"author": {
"name": "Cameron",
"email": "cameron.maloney@warriorlife.net"
},
"version": "0.4.0",
"main": "./public/electron.js",
"homepage": "./",
"private": true,
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@iconify/react": "^4.1.1",
"@mui/material": "^5.14.8",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.5.2",
"@types/node": "^16.18.48",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"apexcharts": "^3.49.1",
"asar": "^3.2.0",
"axios": "^1.6.0",
"electron-process": "^0.2.0",
"react": "^18.2.0",
"react-apexcharts": "^1.4.1",
"react-dom": "^18.2.0",
"react-icons": "^4.12.0",
"react-papaparse": "^4.1.0",
"react-router-dom": "^6.15.0",
"react-scripts": "5.0.0",
"react-spinners": "^0.13.8",
"react-toastify": "^10.0.5",
"react-transition-group": "^4.4.5",
"serve": "^14.2.1",
"typescript": "^4.9.5"
},
"scripts": {
"start2": "set BROWSER=NONE && react-scripts start",
"start": "concurrently \"npm run start:react\" \"npm run start:flask\"",
"start-with-exe": "concurrently \"npm run start:react\" \"npm run start:flask-exe\"",
"start:react": "react-scripts start",
"start:flask": "python api/app.py",
"start:flask-exe": "cd dist/app && app.exe",
"build": "react-scripts build",
"ciBuild": "CI=true react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"electron": "electron .",
"start-electron": "set ELECTRON_START_URL=http://localhost:3000/ && electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"electron:package:win": "npm run build && electron-builder -w -c.extraMetadata.main=build/electron.js",
"electron:package:linux": "npm run build && electron-builder -l -c.extraMetadata.main=build/electron.js"
},
"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": {
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/plugin-transform-private-property-in-object": "^7.24.7",
"concurrently": "^8.2.2",
"electron": "^26.6.10",
"electron-builder": "^24.13.3",
"electron-packager": "^17.1.2",
"tailwindcss": "^3.3.3"
},
"build": {
"appId": "LinguifAI",
"win": {
"target": [
"nsis"
]
},
"linux": {
"target": [
"AppImage",
"deb"
]
},
"files": [
"build/**/*",
"node_modules/**/*",
"resources/**/*"
],
"directories": {
"buildResources": "build"
},
"extraFiles": [
{
"from": "dist/app",
"to": "dist/app",
"filter": [
"**/*"
]
},
{
"from": "build/assets",
"to": "assets",
"filter": [
"**/*"
]
}
],
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"license": "LICENSE"
}
}
}