-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.6 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.6 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "justifi",
"version": "1.0.0",
"main": "main.js",
"author": "National Laboratory of the Rockies & Oak Ridge National Laboratory",
"description": "A tool to identify, estimate potential and report on multiple benefits (MBs) that can be found while conducting energy assessments",
"repository": "https://github.com/ORNL-AMO/JUSTIFI.git",
"engines": {
"node": "24.5.0",
"npm": "11.5.1"
},
"scripts": {
"ng": "ng",
"start": "ng serve --no-hmr",
"build": "ng build --base-href .",
"build-prod": "ng build --configuration production --base-href /",
"build-prod-electron": "ng build --configuration production --base-href .",
"build-watch": "ng build --base-href . --watch",
"electron": "electron .",
"dist": "electron-builder",
"test": "ng test",
"test-ci": "ng test --no-watch --no-progress --browsers=ChromeHeadless"
},
"private": true,
"build": {
"appId": "gov.ornl.justifi",
"copyright": "Copyright 2026 ORNL. All rights reserved.",
"productName": "JUSTIFI",
"directories": {
"output": "./output/"
},
"win": {
"target": "nsis",
"icon": "src/assets/icons/justifi-icon-512x512.png"
},
"nsis": {
"oneClick": false,
"allowElevation": true,
"allowToChangeInstallationDirectory": true,
"artifactName": "${productName}-Setup-${version}.${ext}"
},
"linux": {
"target": [
"AppImage",
"tar.gz"
],
"icon": "src/assets/icons/",
"executableName": "JUSTIFI",
"maintainer": "Oak Ridge National Laboratory",
"artifactName": "${productName}-${version}.${ext}",
"category": "Science"
},
"mac": {
"target": [
"dmg",
"zip"
],
"icon": "src/assets/icons/justifi-icon-512x512.png",
"artifactName": "${productName}-${version}-${arch}.${ext}",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"provisioningProfile": "./embedded.provisionprofile",
"entitlements": "entitlements.mac.inherit.plist",
"entitlementsInherit": "entitlements.mac.inherit.plist"
}
},
"dependencies": {
"@angular/animations": "21.2.1",
"@angular/cdk": "20.2.14",
"@angular/common": "21.2.1",
"@angular/compiler": "21.2.1",
"@angular/core": "21.2.1",
"@angular/forms": "21.2.1",
"@angular/platform-browser": "21.2.1",
"@angular/platform-browser-dynamic": "21.2.1",
"@angular/router": "21.2.1",
"@angular/service-worker": "21.2.1",
"@fortawesome/angular-fontawesome": "4.0.0",
"@fortawesome/fontawesome-svg-core": "7.2.0",
"@fortawesome/free-solid-svg-icons": "7.2.0",
"angular-plotly.js": "6.0.0",
"bootstrap": "5.3.8",
"electron-log": "5.4.0",
"electron-updater": "6.6.2",
"exceljs": "4.4.0",
"jszip": "3.10.1",
"libphonenumber-js": "1.11.3",
"ngx-indexed-db": "22.0.0",
"ngx-webstorage": "21.0.1",
"plotly.js": "3.4.0",
"rxjs": "~7.8.0",
"semver": "7.6.2",
"tslib": "2.7.0",
"val-zip": "1.0.13",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.2/xlsx-0.20.2.tgz",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular/build": "^21.2.1",
"@angular/cli": "21.2.1",
"@angular/compiler-cli": "21.2.1",
"@popperjs/core": "^2.11.8",
"@types/jasmine": "5.1.4",
"electron": "40.8.0",
"electron-builder": "26.8.1",
"jasmine-core": "5.3.0",
"karma": "~6.4.4",
"karma-chrome-launcher": "~3.2.0",
"karma-coverage": "~2.2.0",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "~2.1.0",
"lodash": "4.17.21",
"pptxgenjs": "3.12.0",
"typescript": "~5.9.3"
}
}