-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 4.13 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 4.13 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
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
{
"name": "project-spika-front-angular",
"version": "0.0.0",
"main": "electron.main.js",
"description": "SPIKA",
"author": "ucalls",
"scripts": {
"ng": "ng",
"start": "npm run config:setup && npm run devserver:run",
"postinstall": "npx electron-builder install-app-deps",
"postinstall:web": "node electron/postinstall-web",
"postinstall:electron": "node electron/postinstall",
"ng:build:web": "npm run postinstall:web && ng build --prod --aot --output-path=dist/",
"ng:build:electron": "npm run postinstall:electron && npm run electron:server-tsc && ng build --prod --aot --output-path=dist/",
"ng:server": "ng serve --proxy-config config/proxy.config.json",
"ng:server:web": "npm run postinstall:web && npm run ng:server",
"ng:server:electron": "npm run postinstall:electron && npm run ng:server",
"devserver:run": "concurrently --kill-others \"npm run ng:server\"",
"config:setup": "ts-node ./config/set-env.ts",
"build:spa:production": "ng build --prod --aot --output-path=dist/",
"build:doc": "compodoc -p tsconfig.json",
"build:production": "npm run config:setup && npm run build:spa:production",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"bundle:report": "webpack-bundle-analyzer dist/client/stats.json",
"electron:start": "npm-run-all -p ng:server:electron electron:server",
"electron:server-tsc": "tsc -p electron/tsconfig.json",
"electron:server": "wait-on http-get://localhost:4200/ && npm run electron:server-tsc && electron . --serve",
"electron:local": "npm run ng:build:electron && electron .",
"electron:linux": "npm run ng:build:electron && npx electron-builder build --linux",
"electron:windows": "npm run ng:build:electron && npx electron-builder build --windows",
"electron:mac": "npm run ng:build:electron && npx electron-builder build --mac",
"test": "npm run postinstall:web && ng test --prod --code-coverage",
"lint": "npm run postinstall:web && ng lint",
"git:push": "git push --follow-tags",
"deploy": "git pull && npm run build:production && npm run version:patch && npm run git:push && npm run build:doc",
"version:patch": "npm version patch && git push --tags && npm run changelog",
"e2e": "npm run postinstall:web && ng e2e"
},
"private": true,
"dependencies": {
"@angular/animations": "^7.1.0",
"@angular/cdk": "^7.1.0",
"@angular/common": "^7.1.0",
"@angular/compiler": "^7.1.0",
"@angular/core": "^7.1.0",
"@angular/forms": "^7.1.0",
"@angular/http": "^7.1.0",
"@angular/material": "^7.1.0",
"@angular/platform-browser": "^7.1.0",
"@angular/platform-browser-dynamic": "^7.1.0",
"@angular/router": "^7.1.0",
"@compodoc/compodoc": "^1.1.5",
"@ngx-translate/core": "^11.0.0",
"@ngx-translate/http-loader": "^4.0.0",
"conventional-changelog": "^2.0.3",
"conventional-changelog-cli": "^2.0.5",
"core-js": "^2.5.7",
"dotenv": "6.1.0",
"hammerjs": "^2.0.8",
"messageformat": "^2.0.4",
"moment": "^2.22.2",
"ngx-translate-messageformat-compiler": "^4.3.0",
"npx": "^10.2.0",
"rxjs": "^6.3.3",
"sqlite3": "^4.0.4",
"wait-on": "2.1.0",
"zone.js": "^0.8.26"
},
"devDependencies": {
"@angular/compiler-cli": "^7.1.0",
"@angular-devkit/build-angular": "^0.11.0",
"typescript": "^3.1.6",
"concurrently": "^4.0.1",
"@angular/cli": "^7.1.0",
"@angular/language-service": "^7.1.0",
"@types/jasmine": "^3.3.0",
"@types/jasminewd2": "^2.0.6",
"@types/node": "^10.12.10",
"@types/moment": "^2.13.0",
"@types/dotenv": "^6.1.0",
"@types/sqlite3": "^3.1.3",
"electron": "^3.0.2",
"npm-run-all": "^4.1.5",
"electron-builder": "^20.36.2",
"electron-reload": "^1.3.0",
"codelyzer": "^4.5.0",
"webpack-bundle-analyzer": "^3.0.3",
"jasmine-core": "^3.3.0",
"jasmine-spec-reporter": "^4.2.1",
"karma": "^3.1.1",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage-istanbul-reporter": "^2.0.4",
"karma-jasmine": "^1.1.2",
"karma-jasmine-html-reporter": "^1.4.0",
"protractor": "^5.4.1",
"ts-node": "^7.0.1",
"tslint": "^5.11.0"
}
}