-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 3.73 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 3.73 KB
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
{
"name": "talk",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"translate-extract": "ngx-translate-extract --input ./src --output ./src/assets/i18n/en.json ./src/assets/i18n/fr.json ./src/assets/i18n/es.json ./src/assets/i18n/pt.json --clean --sort --format namespaced-json",
"translate-update": "ngx-translate-extract --input ./src --output ./src/assets/i18n/*.json --sort --format namespaced-json",
"electron-start": "electron .",
"electron-build:win": "ng build --aot && xcopy src\\main-electron.js dist\\main-electron.js /Y /Q",
"electron-build:mac": "ng build --aot && cp src/main-electron.js dist/main-electron.js",
"electron-package:linux": "electron-packager . talk --app-version=0.0.1 --app-copyright=\"Digidelta Software\" --ignore=packages --ignore=src --ignore=node_modules --ignore=e2e --ignore=.*\\.conf\\.js --ignore=\"(angular-cli|tsconfig)\\.json\" --ignore=webpack.*\\.js --out=packages --platform=linux --arch=all --overwrite --electron-version=1.6.7",
"electron-package:mac": "electron-packager . talk --app-version=0.0.1 --app-copyright=\"Digidelta Software\" --ignore=packages --ignore=src --ignore=node_modules --ignore=e2e --ignore=.*\\.conf\\.js --ignore=\"(angular-cli|tsconfig)\\.json\" --ignore=webpack.*\\.js --out=packages --platform=darwin --arch=all --overwrite --electron-version=1.6.7",
"electron-package:win": "electron-packager . talk --app-version=0.0.1 --app-copyright=\"Digidelta Software\" --ignore=packages --ignore=src --ignore=node_modules --ignore=e2e --ignore=.*\\.conf\\.js --ignore=\"(angular-cli|tsconfig)\\.json\" --ignore=webpack.*\\.js --out=packages --platform=win32 --arch=all --overwrite --electron-version=1.6.7",
"electron-package:all": "electron-packager . talk --app-version=0.0.1 --app-copyright=\"Digidelta Software\" --ignore=packages --ignore=src --ignore=node_modules --ignore=e2e --ignore=.*\\.conf\\.js --ignore=\"(angular-cli|tsconfig)\\.json\" --ignore=webpack.*\\.js --out=packages --all --overwrite --electron-version=1.6.7"
},
"main": "dist/main-electron.js",
"private": true,
"dependencies": {
"@angular/animations": "^4.4.6",
"@angular/common": "^4.4.6",
"@angular/compiler": "^4.4.6",
"@angular/core": "^4.4.6",
"@angular/flex-layout": "^2.0.0-beta.9",
"@angular/forms": "^4.4.6",
"@angular/http": "^4.4.6",
"@angular/platform-browser": "^4.4.6",
"@angular/platform-browser-dynamic": "^4.4.6",
"@angular/router": "^4.4.6",
"@ngrx/core": "^1.2.0",
"@ngrx/effects": "^4.1.0",
"@ngrx/router-store": "^4.1.0",
"@ngrx/store": "^4.1.0",
"@ngrx/store-devtools": "^4.0.0",
"@ngx-translate/core": "^8.0.0",
"@ngx-translate/http-loader": "^2.0.0",
"core-js": "^2.5.1",
"iconfonts": "^0.12.0",
"ngrx-store-localstorage": "^0.2.4",
"ngrx-store-logger": "^0.2.0",
"reflect-metadata": "^0.1.10",
"reselect": "^3.0.1",
"rxjs": "^5.5.0",
"zone.js": "^0.8.18"
},
"devDependencies": {
"@angular/cli": "^1.4.9",
"@angular/compiler-cli": "^4.4.6",
"@angular/language-service": "^4.4.6",
"@biesbjerg/ngx-translate-extract": "^2.3.2",
"@types/jasmine": "~2.6.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "~8.0.46",
"codelyzer": "~3.2.1",
"jasmine-core": "~2.8.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~1.7.1",
"karma-chrome-launcher": "~2.2.0",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "^1.3.0",
"karma-jasmine": "~1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"protractor": "~5.2.0",
"ts-node": "~3.3.0",
"tslint": "~5.8.0",
"typescript": "~2.5.3"
}
}