-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
112 lines (112 loc) · 3.91 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
{
"name": "bucketeer",
"version": "1.0.0",
"description": "Get your data safety to the cloud",
"main": "main.js",
"private": true,
"license": "MIT",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"ng": "ng",
"start": "npm-run-all -p electron:serve ng:serve",
"build": "npm run electron:serve-tsc && ng build --base-href ./",
"build:dev": "npm run build -- -c dev",
"build:prod": "npm run build -- -c production",
"ng:serve": "NODE_OPTIONS=--max_old_space_size=8048 ng serve",
"electron:serve-tsc": "tsc -p tsconfig-serve.json",
"electron:serve": "wait-on http-get://localhost:4200/ && npm run electron:serve-tsc && electron . --serve",
"electron:local": "npm run build:prod && electron .",
"electron:linux": "npm run build:prod && electron-builder build --linux",
"electron:windows": "npm run build:prod && electron-builder build --windows",
"electron:mac": "npm run build:prod && electron-builder build --mac",
"test": "ng test --watch=false",
"test:watch": "ng test",
"e2e": "npm run build:prod && cross-env TS_NODE_PROJECT='e2e/tsconfig.e2e.json' mocha --timeout 300000 --require ts-node/register e2e/**/*.e2e.ts",
"version": "conventional-changelog -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"lint": "ng lint"
},
"devDependencies": {
"@angular-builders/custom-webpack": "^13.1.0",
"@angular-devkit/build-angular": "13.3.4",
"@angular-eslint/builder": "13.2.1",
"@angular/cli": "^13.3.4",
"@angular/common": "^13.3.5",
"@angular/compiler": "^13.3.5",
"@angular/compiler-cli": "^13.3.5",
"@angular/core": "^13.3.5",
"@angular/forms": "^13.3.5",
"@angular/language-service": "^13.3.5",
"@angular/platform-browser": "^13.3.5",
"@angular/platform-browser-dynamic": "^13.3.5",
"@angular/router": "^13.3.5",
"@ngx-translate/core": "^14.0.0",
"@ngx-translate/http-loader": "^7.0.0",
"@types/jasmine": "^4.0.3",
"@types/jasminewd2": "^2.0.10",
"@types/lodash": "^4.14.182",
"@types/mocha": "9.1.1",
"@types/node": "17.0.30",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "5.21.0",
"@typescript-eslint/parser": "5.21.0",
"chai": "4.3.6",
"codelyzer": "6.0.2",
"concurrently": "^7.1.0",
"conventional-changelog-cli": "2.2.2",
"core-js": "3.22.3",
"cross-env": "7.0.3",
"devtron": "1.4.0",
"electron": "18.2.0",
"electron-builder": "latest",
"electron-devtools-installer": "^3.2.0",
"electron-redux-devtools": "^0.3.4",
"electron-reload": "2.0.0-alpha.1",
"eslint": "8.14.0",
"eslint-plugin-import": "2.26.0",
"jasmine-core": "4.1.0",
"jasmine-spec-reporter": "7.0.0",
"karma": "6.3.19",
"karma-coverage-istanbul-reporter": "3.0.3",
"karma-electron": "7.1.0",
"karma-jasmine": "5.0.0",
"karma-jasmine-html-reporter": "1.7.0",
"mocha": "9.2.2",
"npm-run-all": "4.1.5",
"redux": "^4.2.0",
"rxjs": "7.5.5",
"spectron": "19.0.0",
"ts-node": "10.7.0",
"tslib": "2.4.0",
"typescript": "4.6.4",
"wait-on": "6.0.1",
"webdriver-manager": "12.1.8",
"zone.js": "0.11.5"
},
"engines": {
"node": ">=10.13.0"
},
"dependencies": {
"@angular/animations": "^13.3.5",
"@angular/cdk": "^13.3.5",
"@angular/forms": "^13.3.5",
"@angular/localize": "^13.3.5",
"@angular/material": "13.3.5",
"@fortawesome/angular-fontawesome": "^0.10.2",
"@fortawesome/fontawesome-svg-core": "^6.1.1",
"@fortawesome/free-solid-svg-icons": "^6.1.1",
"@ngrx/store": "13.1.0",
"@ngrx/store-devtools": "13.1.0",
"amazon-cognito-identity-js": "^5.2.8",
"aws-sdk": "2.1125.0",
"chokidar": "^3.5.3",
"dayjs": "1.11.1",
"dotenv": "^16.0.0",
"font-awesome": "^4.7.0",
"global": "^4.4.0",
"lodash": "^4.17.21",
"ngx-contextmenu": "^6.0.0",
"ngx-image-zoom": "^0.6.0",
"trash": "^8.1.0",
"uuid": "^8.3.2"
}
}