-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
90 lines (90 loc) · 2.93 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
{
"name": "ndvor",
"version": "1.0.0",
"scripts": {
"ng": "ng",
"predeploy": "node index",
"deploy": "firebase deploy",
"start:api": "cross-env NODE_ENV=dev node server/index.js",
"start:ui": "ng serve",
"start": "cross-env NODE_ENV=dev concurrently --kill-others \"ng serve\" \"npm run start:api\"",
"compile:server": "webpack --config webpack.server.config.js --progress --colors",
"serve:ssr": "node dist/server",
"build:ssr": "npm run build:client-and-server-bundles && npm run compile:server",
"build:client-and-server-bundles": "ng build --prod && ng run ndvor:server:production"
},
"private": true,
"dependencies": {
"@angular/animations": "^7.2.15",
"@angular/common": "^7.2.15",
"@angular/compiler": "^7.2.15",
"@angular/core": "^7.2.15",
"@angular/forms": "^7.2.15",
"@angular/http": "^7.2.15",
"@angular/platform-browser": "^7.2.15",
"@angular/platform-browser-dynamic": "^7.2.15",
"@angular/platform-server": "^7.2.0",
"@angular/router": "^7.2.15",
"@ng-bootstrap/ng-bootstrap": "^4.1.2",
"@ngu/carousel": "^1.5.4",
"@nguniversal/express-engine": "^7.1.1",
"@nguniversal/module-map-ngfactory-loader": "0.0.0",
"@swimlane/ngx-datatable": "^13.1.0",
"angular-in-memory-web-api": "^0.6.1",
"angular2-wizard": "^0.4.0",
"bluebird": "^3.5.4",
"body-parser": "^1.19.0",
"bootstrap": "^4.1.3",
"cookie-parser": "^1.4.4",
"cookie-session": "^1.3.3",
"core-js": "^2.5.4",
"cors": "^2.8.5",
"domino": "^2.1.3",
"eva-icons": "^1.1.1",
"express": "^4.15.2",
"express-content-length-validator": "^1.0.0",
"firebase-functions": "^2.3.0",
"hammerjs": "^2.0.8",
"helmet": "^3.16.0",
"jquery": "^3.4.1",
"localstorage-polyfill": "^1.0.1",
"lodash": "^4.17.11",
"ng2-validation": "^4.2.0",
"ngx-chips": "^1.9.8",
"ngx-pagination": "^3.2.1",
"popper.js": "^1.14.4",
"rxjs": "~6.3.3",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^3.9.0",
"zone.js": "~0.8.26"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.12.0",
"@angular/cli": "~7.2.0",
"@angular/compiler-cli": "^7.2.15",
"@angular/language-service": "^7.2.15",
"@types/jasmine": "~3.3.5",
"@types/jasminewd2": "~2.0.6",
"@types/jquery": "^3.3.29",
"@types/node": "~10.12.18",
"codelyzer": "~4.5.0",
"concurrently": "^4.1.0",
"cross-env": "^5.2.0",
"firebase-admin": "^7.3.0",
"firebase-tools": "^6.9.2",
"fs-extra": "^7.0.1",
"jasmine-core": "~3.3.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~3.1.4",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.4",
"karma-jasmine": "~2.0.1",
"karma-jasmine-html-reporter": "^1.4.2",
"protractor": "~5.4.2",
"ts-loader": "^5.2.0",
"ts-node": "~7.0.1",
"tslint": "~5.12.0",
"typescript": "~3.2.2",
"webpack-cli": "^3.1.0"
}
}