-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
127 lines (127 loc) · 3.97 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
127
{
"name": "dataloader-ui",
"productName": "Bullhorn Data Loader",
"version": "2.11.3",
"description": "Desktop App for quickly importing CSV data into your Bullhorn CRM",
"repository": "https://github.com/bullhorn/dataloader-app",
"author": "Bullhorn",
"license": "AGPL-3.0",
"private": true,
"scripts": {
"analyze": "npm run build:prod -- --stats-json && npx webpack-bundle-analyzer ./dist/stats.json",
"build": "node --max_old_space_size=4096 node_modules/@angular/cli/bin/ng build --base-href .",
"build:prod": "npm run build -- --configuration production &> build.log",
"compile": "tsc ./mainProcess/mainProcess.ts ./mainProcess/menu.ts --skipLibCheck true --outDir dist",
"download": "node packageResources/download-latest-dataloader.js",
"lint": "tslint --project tsconfig.json",
"package": "npm run download && npm run build:prod && npm run compile && npm run stage && npm run publish",
"publish": "cd dist && electron-builder --win --mac",
"serve": "electron dist/mainProcess.js --serve",
"stage": "copyfiles package*.json 'dataloader/**/*' dist",
"start": "npm run download && npm run build && npm run compile && npm run serve",
"test": "ng serve",
"precommit-msg": "echo 'Pre-commit checks...' && exit 0",
"release": "standard-version",
"postrelease": "git push --follow-tags origin master"
},
"pre-commit": [
"precommit-msg",
"lint"
],
"main": "mainProcess.js",
"build": {
"appId": "com.bullhorn.dataloader",
"directories": {
"buildResources": "../buildResources",
"output": "../packages"
},
"asarUnpack": "dataloader/",
"mac": {
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "../packageResources/mac-entitlements.plist",
"entitlementsInherit": "../packageResources/mac-entitlements.plist",
"notarize": {
"teamId": "8AGHEBNNMX"
}
},
"win": {
"publisherName": "Bullhorn"
}
},
"browser": {
"crypto": false,
"fs": false,
"http": false,
"https": false,
"net": false,
"path": false,
"stream": false,
"tls": false,
"zlib": false
},
"dependencies": {
"@angular/animations": "~13.3.0",
"@angular/cdk": "~13.3.1",
"@angular/common": "~13.3.0",
"@angular/compiler": "~13.3.0",
"@angular/core": "~13.3.0",
"@angular/forms": "~13.3.0",
"@angular/platform-browser": "~13.3.0",
"@angular/platform-browser-dynamic": "~13.3.0",
"@angular/platform-server": "~13.3.0",
"@angular/router": "~13.3.0",
"@bullhorn/bullhorn-icons": "2.28.0",
"@bullhorn/bullhorn-types": "1.110.0",
"@bullhorn/dragula": "1.0.1",
"@electron/remote": "2.1.2",
"angular-imask": "6.2.2",
"angular2-text-mask": "9.0.0",
"brace": "0.11.1",
"chart.js": "2.9.4",
"crypto-js": "4.2.0",
"date-fns": "2.30.0",
"electron-log": "5.1.2",
"electron-updater": "6.1.8",
"external-ip": "2.3.1",
"fast-csv": "4.3.6",
"fullname": "4.0.1",
"fuse.js": "6.6.2",
"glob": "10.3.12",
"moment": "2.30.1",
"moment-duration-format": "2.3.2",
"novo-design-tokens": "0.0.9",
"novo-elements": "8.2.0",
"rimraf": "5.0.5",
"rxjs": "7.8.1",
"text-mask-addons": "3.8.0",
"timezone-support": "2.2.0",
"username": "5.1.0",
"util": "0.12.5",
"uuidv4": "6.2.13",
"zone.js": "0.11.8"
},
"devDependencies": {
"@angular-devkit/build-angular": "~13.3.11",
"@angular-devkit/core": "~13.3.0",
"@angular/cli": "~13.3.0",
"@angular/compiler-cli": "~13.3.0",
"@types/chart.js": "2.9.41",
"@types/crypto-js": "4.2.2",
"@types/node": "20.12.7",
"copyfiles": "2.4.1",
"electron": "30.0.1",
"electron-builder": "24.13.3",
"extract-zip": "2.0.1",
"pre-commit": "1.2.2",
"standard-version": "9.5.0",
"ts-node": "10.9.2",
"tslint": "6.1.3",
"typescript": "4.6.4"
},
"resolutions": {
"strip-ansi": "6.0.1",
"string-width": "4.2.0",
"wrap-ansi": "7.0.0"
}
}