-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.82 KB
/
package.json
File metadata and controls
100 lines (100 loc) · 2.82 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": "fairscape-rocrate-repository",
"version": "1.0.0",
"description": "Electron app for creating ROCrates compatiable with FAIRSCAPE",
"main": "main.js",
"scripts": {
"start": "electron .",
"build": "webpack --config webpack.config.js --env ENVIRONMENT=production",
"build:dev": "webpack --config webpack.config.js --env ENVIRONMENT=development",
"build:prod": "webpack --config webpack.config.js --env ENVIRONMENT=production",
"package": "npm run build:prod && electron-builder",
"package:linux": "npm run build:prod && electron-builder --linux AppImage",
"package:mac": "npm run build:prod && electron-builder --mac",
"dev": "webpack --config webpack.config.js --env ENVIRONMENT=development --watch & electron ."
},
"keywords": [],
"author": {
"name": "FAIRSCAPE",
"email": "fairscape@uva.edu"
},
"license": "ISC",
"dependencies": {
"@electron/remote": "^2.1.2",
"@fortawesome/fontawesome-svg-core": "^6.6.0",
"@fortawesome/free-solid-svg-icons": "^6.6.0",
"@fortawesome/react-fontawesome": "^0.2.2",
"ajv": "^8.17.1",
"archiver": "^7.0.1",
"avj": "^0.0.0",
"axios": "^1.7.7",
"bootstrap": "^5.3.2",
"duckdb": "^1.1.1",
"file-loader": "^6.2.0",
"h5wasm": "^0.7.8",
"hdf5-io": "^0.0.33",
"jsfive": "^0.3.14",
"jwt-decode": "^4.0.0",
"lucide-react": "^0.454.0",
"react": "^18.3.1",
"react-beautiful-dnd": "^13.1.1",
"react-bootstrap": "^2.10.4",
"react-dom": "^18.3.1",
"react-syntax-highlighter": "^15.6.1",
"styled-components": "^6.1.11",
"uuid": "^10.0.0"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@babel/preset-react": "^7.24.7",
"babel-loader": "^9.1.3",
"css-loader": "^7.1.2",
"electron": "^31.1.0",
"electron-builder": "^24.13.3",
"style-loader": "^4.0.0",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4"
},
"build": {
"appId": "edu.uva.fairscape.rocrate",
"productName": "FAIRSCAPE",
"mac": {
"category": "public.app-category.developer-tools",
"icon": "build/icon.icns",
"target": [
"dmg",
"zip"
],
"identity": "FAIRSCAPE Developer",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist"
},
"win": {
"target": "nsis",
"icon": "build/icon.ico"
},
"linux": {
"target": [
"AppImage"
],
"icon": "build/icon.png",
"category": "Development"
},
"files": [
"build/icon.*",
"main.js",
"preload.js",
"dist/**/*",
"node_modules/**/*",
"package.json",
"index.html",
"src/**/*"
],
"directories": {
"output": "release"
}
}
}