-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.38 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.38 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
{
"name": "serviceminer-frontend",
"version": "0.1.0",
"private": true,
"dependencies": {
"@emotion/react": "^11.10.6",
"@emotion/styled": "^11.10.6",
"@mui/icons-material": "^5.11.9",
"@mui/material": "^5.11.10",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^29.2.3",
"@types/react": "^18.0.25",
"@types/react-cytoscapejs": "^1.2.2",
"@types/react-dom": "^18.0.9",
"concurrently": "^7.6.0",
"cytoscape": "^3.23.0",
"cytoscape-cose-bilkent": "^4.1.0",
"cytoscape-cxtmenu": "^3.5.0",
"cytoscape-undo-redo": "^1.3.3",
"electron-devtools-installer": "^3.2.0",
"fg-loadcss": "^3.1.0",
"react": "^18.2.0",
"react-cytoscape": "^1.0.6",
"react-cytoscapejs": "^2.0.0",
"react-dom": "^18.2.0",
"react-draggable": "^4.4.5",
"react-scripts": "^5.0.1",
"web-vitals": "^2.1.4"
},
"main": "src/main.cjs",
"type": "module",
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"postinstall": "electron-builder install-app-deps",
"electron:dev": "concurrently \"cross-env BROWSER=none npm run start\" \"wait-on http://127.0.0.1:3000 && tsc -p electron -w\" \"wait-on http://127.0.0.1:3000 && tsc -p electron && electron .\"",
"electron:build": "npm run build && tsc -p electron && electron-builder",
"eject": "react-scripts eject"
},
"build": {
"extends": null,
"files": [
"build/**/*"
],
"directories": {
"buildResources": "assets"
}
},
"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": {
"@types/electron": "^1.6.10",
"@types/node": "^18.13.0",
"autoprefixer": "^10.4.13",
"cross-env": "^7.0.3",
"electron": "^23.1.0",
"electron-builder": "^22.10.3",
"foreman": "^3.0.1",
"postcss": "^8.4.21",
"postcss-cli": "^10.1.0",
"postcss-loader": "^7.0.2",
"svg-react-loader": "^0.4.2",
"tailwindcss": "^3.2.6",
"ts-loader": "^9.4.2",
"typescript": "^4.9.5",
"wait-on": "^6.0.1"
}
}