-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
86 lines (86 loc) · 2.68 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
{
"name": "web",
"version": "0.0.0",
"license": "MIT",
"angular-cli": {},
"scripts": {
"ng": "ng",
"webdriver-update": "webdriver-manager update",
"start": "ng serve",
"test": "ng test",
"e2e": "ng e2e",
"build": "ng build",
"webpack": "webpack",
"compile:server": "webpack --config webpack.server.config.js --progress --colors",
"serve:ssr": "npm run build:ssr && node dist/server",
"build:ssr": "npm run build:client-and-server-bundles && npm run compile:server",
"build:client-and-server-bundles": "ng build --configuration=local && ng run web:server:local"
},
"private": true,
"dependencies": {
"@angular/animations": "^7.2.9",
"@angular/cdk": "^7.3.4",
"@angular/common": "^7.2.9",
"@angular/compiler": "^7.2.9",
"@angular/core": "^7.2.9",
"@angular/forms": "^7.2.9",
"@angular/http": "^7.2.9",
"@angular/material": "^7.3.4",
"@angular/platform-browser": "^7.2.9",
"@angular/platform-browser-dynamic": "^7.2.9",
"@angular/platform-server": "^7.2.9",
"@angular/router": "^7.2.9",
"@auth0/angular-jwt": "^2.1.0",
"@ngui/auto-complete": "^2.0.0",
"@nguniversal/express-engine": "^7.1.1",
"@nguniversal/module-map-ngfactory-loader": "v7.1.1",
"@ngx-lite/json-ld": "^0.5.2",
"@ngx-progressbar/core": "^5.3.2",
"angular2-notifications": "^2.0.0",
"core-js": "^2.6.5",
"cryptiles": "^4.1.3",
"d3": "^5.9.1",
"d3-cloud": "^1.2.5",
"ember-cli-cors": "0.0.2",
"express": "^4.16.4",
"font-awesome": "^4.7.0",
"moment": "^2.24.0",
"ngx-bootstrap": "^3.2.0",
"ngx-clipboard": "^12.0.0",
"ngx-disqus": "^2.4.3",
"ngx-image-cropper": "^1.3.8",
"ngx-pagination": "^3.2.1",
"ngx-quill": "^4.6.12",
"node-fetch-polyfill": "^2.0.6",
"quill": "^1.3.6",
"rxjs": "^6.4.0",
"zone.js": "^0.8.29",
"acorn": "^6.0.5"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.13.5",
"@angular/cli": "^7.3.5",
"@angular/compiler-cli": "^7.2.9",
"@types/d3": "^5.7.1",
"@types/google.analytics": "0.0.39",
"@types/jasmine": "3.3.9",
"@types/node": "^11.11.3",
"codelyzer": "~5.0.0-beta.0",
"jasmine-core": "3.3.0",
"jasmine-spec-reporter": "4.2.1",
"karma": "^4.0.1",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^2.0.0",
"karma-coverage-istanbul-reporter": "^2.0.5",
"karma-html-reporter": "^0.2.7",
"karma-jasmine": "^2.0.1",
"karma-jasmine-html-reporter": "^1.4.0",
"karma-remap-istanbul": "^0.6.0",
"protractor": "~5.4.2",
"ts-loader": "^5.3.3",
"ts-node": "8.0.3",
"tslint": "^5.14.0",
"typescript": "~3.2.4",
"webpack-cli": "^3.2.3"
}
}