-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
142 lines (142 loc) · 3.86 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"name": "translatol",
"description": "A tool to translate XLIFF files",
"author": "Vincent Tabary <opensource@tabary.me>",
"version": "0.1.2",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vtabary/translatol"
},
"scripts": {
"start": "nx serve ui --configuration=dev-electron",
"build": "nx build ui --configuration=dev-electron",
"build:prod": "nx build ui --configuration production",
"test": "nx test ui",
"lint": "nx lint ui",
"electron": "electron .",
"pack": "electron-builder --dir",
"dist": "electron-builder build",
"postinstall": "electron-builder install-app-deps",
"postversion": "git push origin HEAD && git push origin v$npm_package_version"
},
"engines": {
"node": ">=14.15"
},
"homepage": "https://github.com/vtabary/translatol",
"private": true,
"main": "apps/electron/src/electron.js",
"build": {
"appId": "com.vtabary.translatol",
"productName": "Translatol",
"copyright": "Copyright © 2021 Vincent Tabary",
"files": [
"dist/apps/ui",
"apps/electron/src/electron.js",
"apps/electron/assets/icon.png"
],
"directories": {
"buildResources": "./apps/electron",
"output": "./dist/packages/${os}/${arch}"
},
"win": {
"icon": "./assets/icon.png",
"target": [
{
"target": "nsis",
"arch": [
"x64",
"ia32"
]
},
{
"target": "portable",
"arch": [
"x64",
"ia32"
]
}
]
},
"nsis": {},
"linux": {
"icon": "./assets/icon.png",
"category": "Utility",
"target": [
{
"target": "deb",
"arch": [
"x64"
]
}
],
"publish": [
{
"provider": "github"
}
]
}
},
"dependencies": {
"@angular/animations": "~15.2.0",
"@angular/cdk": "^15.2.8",
"@angular/common": "~15.2.0",
"@angular/compiler": "~15.2.0",
"@angular/core": "~15.2.0",
"@angular/forms": "~15.2.0",
"@angular/localize": "^15.2.8",
"@angular/platform-browser": "~15.2.0",
"@angular/platform-browser-dynamic": "~15.2.0",
"@angular/router": "~15.2.0",
"@cds/core": "^6.4.1",
"@clr/angular": "^15.3.0",
"@clr/ui": "^15.3.0",
"@electron/remote": "^2.0.9",
"@nrwl/angular": "15.9.2",
"@vtabary/xliff2js": "~0.4.0",
"lodash": "^4.17.21",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.12.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "~15.2.0",
"@angular-devkit/core": "~15.2.0",
"@angular-devkit/schematics": "~15.2.0",
"@angular-eslint/eslint-plugin": "~15.0.0",
"@angular-eslint/eslint-plugin-template": "~15.0.0",
"@angular-eslint/template-parser": "~15.0.0",
"@angular/cli": "~15.2.0",
"@angular/compiler-cli": "~15.2.0",
"@angular/language-service": "~15.2.0",
"@nrwl/cypress": "15.9.2",
"@nrwl/eslint-plugin-nx": "15.9.2",
"@nrwl/jest": "15.9.2",
"@nrwl/js": "15.9.2",
"@nrwl/linter": "15.9.2",
"@nrwl/nx-cloud": "latest",
"@nrwl/web": "15.9.2",
"@nrwl/workspace": "15.9.2",
"@schematics/angular": "~15.2.0",
"@types/electron": "^1.6.10",
"@types/jest": "^29.4.0",
"@types/lodash": "^4.14.194",
"@types/node": "16.11.7",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"cypress": "^12.2.0",
"electron": "^24.1.3",
"electron-builder": "^23.6.0",
"eslint": "~8.15.0",
"eslint-config-prettier": "8.1.0",
"eslint-plugin-cypress": "^2.10.3",
"jest": "^29.4.1",
"jest-environment-jsdom": "^29.4.1",
"jest-preset-angular": "~13.0.0",
"nx": "15.9.2",
"prettier": "^2.6.2",
"ts-jest": "^29.0.5",
"ts-node": "10.9.1",
"typescript": "~4.9.5"
}
}