-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
109 lines (109 loc) · 3.69 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
{
"name": "ngx-translate-editor",
"version": "1.0.0",
"description": "GUI for edit translate keys on Angular projects",
"homepage": "https://github.com/svoboda-rabstvo/ngx-translate-editor",
"author": {
"name": "Roman Lauryniuk",
"email": "romanrostislavovich@gmail.com"
},
"keywords": [
"internaziolation",
"ngx-translate",
"Angular 8",
"i18n"
],
"main": "main.js",
"private": true,
"scripts": {
"postinstall": "electron-builder install-app-deps",
"ng": "ng",
"start": "npm-run-all -p ng:serve:web electron:serve",
"build": "npm run electron:serve-tsc && ng build",
"build:dev": "npm run build -- -c dev",
"build:prod": "npm run build -- -c production",
"ng:serve": "ng serve",
"ng:serve:web": "ng serve -c web -o",
"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",
"e2e": "npm run build:prod && mocha --timeout 300000 --require ts-node/register e2e/**/*.spec.ts",
"version": "conventional-changelog -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md",
"lint": "ng lint",
"lint:translate": "npx ngx-translate-lint -p ./src/app/**/*.{html,ts} -l ./src/assets/i18n/*.json",
"semantic-release": "semantic-release",
"release": "npm run electron:linux && npm run electron:windows"
},
"devDependencies": {
"@angular-builders/custom-webpack": "8.2.0",
"@angular-devkit/build-angular": "~0.1101.2",
"@angular-eslint/builder": "0.0.1-alpha.17",
"@angular/cli": "11.1.2",
"@angular/common": "11.1.2",
"@angular/compiler": "11.1.2",
"@angular/compiler-cli": "11.1.2",
"@angular/core": "11.1.2",
"@angular/language-service": "11.1.2",
"@angular/platform-browser": "11.1.2",
"@angular/platform-browser-dynamic": "11.1.2",
"@angular/router": "11.1.2",
"@ngx-translate/core": "11.0.1",
"@ngx-translate/http-loader": "4.0.0",
"@types/jasmine": "~3.6.0",
"@types/jasminewd2": "2.0.8",
"@types/mocha": "5.2.7",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "2.8.0",
"@typescript-eslint/parser": "2.8.0",
"chai": "4.2.0",
"codelyzer": "^6.0.0",
"conventional-changelog-cli": "2.0.32",
"core-js": "3.1.4",
"electron": "7.1.7",
"electron-builder": "21.2.0",
"electron-reload": "1.5.0",
"eslint": "6.6.0",
"eslint-plugin-import": "2.18.2",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~5.0.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-electron": "6.3.0",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"mocha": "6.2.2",
"npm-run-all": "4.1.5",
"rxjs": "6.6.3",
"spectron": "9.0.0",
"ts-node": "8.3.0",
"typescript": "4.1.3",
"wait-on": "3.3.0",
"webdriver-manager": "12.1.7",
"zone.js": "~0.11.3"
},
"engines": {
"node": ">=10.9.0"
},
"files": [
"release/",
"README.md"
],
"dependencies": {
"@angular/animations": "^11.1.2",
"@angular/cdk": "~11.1.1",
"@angular/forms": "^11.1.2",
"@angular/material": "11.1.1",
"@semantic-release/changelog": "5.0.1",
"@semantic-release/git": "9.0.0",
"lodash": "4.17.20",
"lowdb": "1.0.0",
"ngx-translate-lint": "1.13.0",
"semantic-release": "17.3.1",
"shortid": "2.2.16",
"tslib": "^2.0.0"
}
}