-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
86 lines (86 loc) · 2.64 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
{
"name": "sfdmu-gui-app",
"version": "4.10.0",
"description": "SFDMU GUI App",
"repository": "forcedotcom/SFDX-Data-Move-Utility-Desktop-App",
"license": "BSD-3-Clause",
"copyright": "Salesforce.com, Inc.",
"author": "Salesforce",
"developedBy": "Haim Knokh",
"keywords": [],
"devDependencies": {
"@types/angular": "^1.8.5",
"@types/angular-animate": "^1.5.11",
"@types/angular-sanitize": "^1.8.1",
"@types/angular-ui-router": "^1.1.41",
"@types/angular-wizard": "^1.1.1",
"@types/bootstrap": "^5.2.6",
"@types/fs-extra": "^11.0.1",
"@types/jquery": "^3.5.16",
"@types/jsforce": "^1.11.0",
"@types/ps-tree": "^1.1.2",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"electron": "^24.3.0",
"electron-debug": "^3.2.0",
"eslint": "^7.32.0",
"typescript": "^4.9.5"
},
"dependencies": {
"@electron/remote": "^2.0.10",
"@popperjs/core": "^2.11.8",
"angular": "^1.8.3",
"angular-animate": "^1.8.3",
"angular-messages": "^1.8.3",
"angular-sanitize": "^1.8.3",
"angular-ui-router": "^1.0.30",
"bootstrap": "^5.3.1",
"class-transformer": "^0.5.1",
"es6-shim": "^0.35.8",
"fs-extra": "^11.1.1",
"jquery": "^3.7.0",
"jsforce": "^3.4.1",
"lodash": "^4.17.21",
"platform-folders": "^0.6.0",
"ps-tree": "^1.2.0",
"reflect-metadata": "^0.1.13",
"soql-parser-js": "^2.5.3",
"winston": "^3.10.0",
"winston-daily-rotate-file": "^4.7.1"
},
"main": "js/electron-app/main.js",
"exeName": "sfdmu-gui-app",
"exeDescription": "A user-friendly GUI for the SFDMU Plugin to simplify Salesforce data migrations.",
"exeCompany": "Salesforce.com, Inc.",
"exeProductName": "SFDMU GUI App",
"exeCopyright": "Salesforce.com, Inc. under BSD-3-Clause",
"exeHomepage": "https://github.com/forcedotcom/SFDX-Data-Move-Utility-Desktop-App",
"appConfig": {
"dataRoot": "sfdmu-gui-app",
"appRoot": "",
"databaseFilename": "db.json",
"locales": [
"en",
"he",
"ru",
"es",
"fr",
"de",
"it",
"ar",
"ja"
],
"defaultLocale": "en",
"fallbackLocale": "en",
"backupOnApplicationStart": true,
"backupEveryNMinutes": 5,
"useSfCliCommands": true,
"theme": "cosmo"
},
"scripts": {
"start": "electron --enable-transparent-visuals --disable-gpu ./js/electron-app/main.js",
"debug": "npm run build && electron --enable-transparent-visuals --disable-gpu --trace-warnings ./js/electron-app/main.js --inspect=3000",
"build": "tsc && npm run copy-templates",
"copy-templates": "node ./copyFiles.js html ./src json"
}
}