-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.68 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.68 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
{
"name": "gui",
"version": "1.0.0",
"description": "GUI for Graduation Projct SecureAI",
"main": "index.js",
"homepage": "./",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "export BROWSER=none && react-scripts start",
"watch": "webpack --config webpack.common.js --watch",
"build": "react-scripts build",
"package": "electron-builder build --linux -c.extraMetadata.main=build/electron/main.js --publish never",
"electron": "export ELECTRON_START_URL=http://localhost:3000 && electron .",
"build-electron": "mkdir build/src && mkdir build/electron && cp -r ./main.js build/electron && cp -r src/shared/. build/src/shared"
},
"author": "Alaa Essam",
"license": "ISC",
"dependencies": {
"axios": "^0.21.1",
"bootstrap": "^5.0.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.2.0",
"react-router-dom": "^5.2.0",
"react-scripts": "^4.0.3",
"reactstrap": "^8.9.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"@babel/preset-react": "^7.10.4",
"css-loader": "^4.3.0",
"electron-builder": "^21.1.1",
"electron-reload": "^1.5.0",
"file-loader": "^6.2.0",
"electron": "^13.1.6",
"sass": "^1.26.11",
"sass-loader": "^10.0.2",
"style-loader": "^1.2.1",
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12"
},
"directories": {
"buildResources": "build",
"app": "build"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}