-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
96 lines (96 loc) · 3.01 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
{
"name": "oversetter",
"version": "0.4.0",
"license": "MIT",
"author": {
"name": "4gray",
"email": "[email protected]"
},
"description": "Translate text directly from your menubar.",
"repository": {
"type": "git",
"url": "https://github.com/4gray/oversetter"
},
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build --prod && cp package.json dist/",
"test": "jest",
"lint": "ng lint",
"e2e": "ng e2e",
"run:electron": "electron ./dist/electron/main.js --disable-gpu",
"dev": "ng build -w",
"build:linux": "npm run build && electron-builder -l",
"build:mac": "npm run build && electron-builder -m",
"build:windows": "npm run build && electron-builder -w",
"build:all": "npm run build && electron-builder -mwl"
},
"main": "dist/electron/main.js",
"private": false,
"dependencies": {
"@ngrx/effects": "^9.1.2",
"@ngrx/entity": "^9.1.2",
"@ngrx/store": "^9.1.2",
"@ngrx/store-devtools": "^9.1.2",
"@types/jest": "^25.1.3",
"auto-launch": "^5.0.5",
"electron-settings": "^3.2.0",
"jest": "^25.1.0",
"jest-preset-angular": "^8.0.0",
"menubar": "^9.0.1",
"rxjs-compat": "^6.2.2",
"semver": "^5.4.1",
"superagent": "^3.8.2",
"ts-jest": "25.1.0",
"tslib": "^1.10.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.900.3",
"@angular/animations": "^9.0.2",
"@angular/cdk": "^9.0.1",
"@angular/cli": "~9.0.3",
"@angular/common": "^9.0.2",
"@angular/compiler": "^9.0.2",
"@angular/compiler-cli": "^9.0.2",
"@angular/core": "^9.0.2",
"@angular/flex-layout": "^9.0.0-beta.29",
"@angular/forms": "^9.0.2",
"@angular/language-service": "^9.0.2",
"@angular/platform-browser": "^9.0.2",
"@angular/platform-browser-dynamic": "^9.0.2",
"@angular/router": "^9.0.2",
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@ng-select/ng-select": "^4.0.0",
"@ngneat/until-destroy": "^7.1.6",
"@ngrx/schematics": "^9.1.2",
"@types/node": "^12.11.1",
"codelyzer": "^5.1.2",
"core-js": "^2.5.4",
"electron": "^7.1.9",
"electron-builder": "^22.3.2",
"husky": "^4.2.1",
"lint-staged": "^10.0.7",
"ng-click-outside": "^4.0.0",
"ngx-electron": "^2.2.0",
"prettier": "^1.19.1",
"rxjs": "^6.5.4",
"ts-node": "~4.1.0",
"tslint": "~5.9.1",
"typescript": "~3.7.5",
"zone.js": "~0.10.2"
},
"jest": {
"preset": "jest-preset-angular",
"setupFilesAfterEnv": [
"<rootDir>/src/setupJest.ts"
],
"testMatch": [
"**/+(*.)+(spec|test).+(ts)?(x)"
],
"coverageReporters": [
"html",
"lcov"
]
}
}