This repository was archived by the owner on Jul 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.45 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.45 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
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "cloud-inventory",
"description": "Export the inventory of your IBM Cloud resources to Excel or PDF files",
"version": "1.0.0",
"private": true,
"license": "LGPL-2.1",
"dependencies": {
"@carbon/icons-react": "10.22.0",
"axios": "^0.21.1",
"carbon-components": "10.25.0",
"carbon-components-react": "7.25.0",
"carbon-icons": "7.0.7",
"electron-is-dev": "^1.2.0",
"electron-log": "^4.3.1",
"excel4node": "^1.7.2",
"pdfkit": "^0.11.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0",
"react-scripts": "4.0.1",
"sass": "1.29.0",
"xml-js": "^1.6.11"
},
"devDependencies": {
"@rescripts/cli": "^0.0.15",
"@rescripts/rescript-env": "^0.0.12",
"concurrently": "^5.3.0",
"electron": "^11.1.1",
"electron-builder": "^22.9.1",
"typescript": "^4.1.3",
"wait-on": "^5.2.1"
},
"scripts": {
"start": "rescripts start",
"build": "rescripts build",
"test": "rescripts test",
"eject": "react-scripts eject",
"dev": "concurrently \"set BROWSER=none && yarn start\" \"wait-on http://localhost:3000 && electron public/electron.js\"",
"postinstall": "electron-builder install-app-deps",
"preelectron-build": "yarn build",
"electron-build": "electron-builder"
},
"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"
]
},
"contributors": [
{
"name": "Erika Garcia",
"email": "erikagarcia2@gmail.com"
},
{
"name": "Isabel C. S. Bernardo",
"email": "cristiina.bell@gmail.com"
},
{
"name": "Vinicius S. Almeida",
"email": "vinicius.sebadelhe@gmail.com"
},
{
"name": "Luis Falcao",
"email": "luis.falcao@gmail.com"
}
],
"homepage": "./",
"main": "public/electron.js",
"build": {
"appId": "com.Cloud.Inventory",
"productName": "Cloud Inventory",
"copyright": "Copyright© 2021. IBM Cloud.",
"mac": {
"icon": "./public/favicon.icns",
"category": "public.app-category.utilities"
},
"win": {
"icon": "./public/favicon.icns"
},
"files": [
"build/**/*",
"node_modules/**/*"
],
"directories": {
"buildResources": "assets"
}
}
}