-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
126 lines (126 loc) · 3.8 KB
/
package.json
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
117
118
119
120
121
122
123
124
125
126
{
"name": "verifi",
"description": "Application for analyzing utility usage",
"version": "0.12.1-beta",
"main": "main.js",
"author": "Advanced Manufacturing Office",
"repository": "https://github.com/ORNL-AMO/VERIFI.git",
"engines": {
"node": "20.11.1",
"npm": "10.2.4"
},
"build": {
"appId": "gov.ornl.amo",
"copyright": "Copyright 2021 ORNL. All rights reserved.",
"productName": "VERIFI",
"directories": {
"output": "../output/verifi/"
},
"win": {
"target": "nsis",
"icon": "src/assets/electron-icons/icon-256x256.png"
},
"nsis": {
"oneClick": false,
"allowElevation": true,
"allowToChangeInstallationDirectory": true,
"artifactName": "${productName}-Setup-${version}.${ext}"
},
"linux": {
"target": [
"AppImage",
"tar.gz"
],
"icon": "src/assets/electron-icons/",
"executableName": "VERIFI",
"maintainer": "Advanced Manufacturing Office",
"artifactName": "${productName}-${version}.${ext}",
"category": "Science"
},
"mac": {
"target": [
"dmg",
"zip"
],
"icon": "src/assets/electron-icons/icon-512x512.png",
"hardenedRuntime": true,
"provisioningProfile": "./embedded.provisionprofile",
"entitlements": "entitlements.mac.inherit.plist",
"entitlementsInherit": "entitlements.mac.inherit.plist",
"gatekeeperAssess": false
}
},
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build --base-href .",
"build-prod": "ng build --configuration production --base-href /",
"build-dev-srv": "ng build --configuration dev-srv --base-href /",
"build-prod-electron": "ng build --configuration production --base-href .",
"build-watch": "ng build --base-href . --watch",
"test": "ng test",
"lint": "ng lint",
"electron": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"dist-nopublish": "electron-builder --publish never"
},
"private": true,
"dependencies": {
"@angular/animations": "19.1.3",
"@angular/cdk": "19.1.1",
"@angular/common": "19.1.3",
"@angular/compiler": "19.1.3",
"@angular/core": "19.1.3",
"@angular/forms": "19.1.3",
"@angular/localize": "19.1.3",
"@angular/platform-browser": "19.1.3",
"@angular/platform-browser-dynamic": "19.1.3",
"@angular/router": "19.1.3",
"@fortawesome/angular-fontawesome": "1.0.0",
"@fortawesome/fontawesome-free": "6.7.2",
"@ng-bootstrap/ng-bootstrap": "18.0.0",
"angular-plotly.js": "6.0.0",
"bootstrap": "5.3.3",
"browserslist": "^4.21.5",
"canvas-confetti": "1.9.3",
"electron-log": "5.1.2",
"electron-updater": "6.3.0",
"fs-jetpack": "^5.1.0",
"jquery": "^3.6.1",
"jstat": "^1.9.5",
"ngx-indexed-db": "19.3.2",
"ngx-webstorage": "19.0.1",
"plotly.js": "3.0.0",
"rxjs": "7.8.1",
"tslib": "^1.14.1",
"websocket-extensions": "^0.1.4",
"xlsx": "https://cdn.sheetjs.com/xlsx-0.20.2/xlsx-0.20.2.tgz",
"zone.js": "0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "19.1.5",
"@angular/cli": "19.1.5",
"@angular/compiler-cli": "19.1.3",
"@angular/language-service": "19.1.3",
"@popperjs/core": "^2.11.6",
"@types/jasmine": "5.1.4",
"@types/jasminewd2": "^2.0.10",
"@types/node": "20.12.5",
"electron": "29.2.0",
"electron-builder": "24.13.3",
"exceljs": "4.3.0",
"jasmine-core": "4.6.0",
"jasmine-spec-reporter": "7.0.0",
"karma": "^6.4.0",
"karma-chrome-launcher": "3.2.0",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-jasmine": "5.1.0",
"karma-jasmine-html-reporter": "2.0.0",
"lodash": "^4.17.21",
"papaparse": "5.5.2",
"ts-node": "9.1.1",
"tslint": "6.1.3",
"typescript": "5.5.4"
}
}