-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.37 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.37 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
{
"name": "FutureDrive",
"version": "1.2.1",
"description": "FutureDrive app",
"author": "xautomove",
"main": "index.js",
"license": "MIT",
"dependencies": {
"@codemirror/lang-javascript": "^6.2.3",
"@codemirror/theme-one-dark": "^6.1.2",
"@electron/remote": "^2.1.2",
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@mui/icons-material": "^7.0.2",
"@mui/material": "^7.0.2",
"@uiw/react-codemirror": "^4.23.12",
"antd": "^5.24.9",
"cors": "^2.8.5",
"electron-store": "^10.0.1",
"express": "^5.1.0",
"open3d": "^0.2.4",
"re-resizable": "^6.11.2",
"react": "^18.2.0",
"react-color": "^2.19.3",
"react-dom": "^18.2.0",
"react-monaco-editor": "^0.58.0",
"react-resizable": "^3.0.5",
"react-router-dom": "^6.22.0",
"reactflow": "^11.11.4",
"redis": "^5.6.0",
"systeminformation": "^5.27.1",
"three": "^0.177.0",
"uuid": "^11.1.0"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@babel/preset-react": "^7.23.9",
"babel-loader": "^9.1.3",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"css-loader": "^6.10.0",
"electron": "^36.0.0",
"electron-builder": "^26.0.12",
"electron-packager": "^17.1.2",
"style-loader": "^3.3.4",
"wait-on": "^8.0.3",
"webpack": "^5.90.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.2.1"
},
"scripts": {
"start": "electron .",
"dev:webpack": "cross-env NODE_ENV=development webpack serve --mode development",
"dev:electron": "cross-env NODE_ENV=development electron .",
"dev": "cross-env NODE_ENV=development PLATFORM=linux concurrently \"yarn dev:webpack\" \"wait-on http://localhost:3000 && yarn dev:electron\"",
"build": "webpack --mode production",
"package": "electron-builder --linux --config.asar=true --publish=never",
"test": "echo \"Error: no test specified\" && exit 1"
},
"build": {
"appId": "com.futuredrive.app",
"productName": "FutureDrive",
"directories": {
"output": "dist"
},
"files": [
"public/**/*",
"api/*",
"ipc/*",
"system/**/*",
"node_modules/**/*",
"index.js"
],
"linux": {
"target": [
"AppImage"
],
"category": "Development",
"icon": "public/icon.png",
"executableName": "FutureDrive"
}
}
}