This repository has been archived by the owner on Oct 6, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
120 lines (120 loc) · 3.54 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
{
"name": "ng2-node-mongo-core",
"version": "1.0.0",
"author": "rfprod",
"license": "MIT",
"description": "Application Core: Angular, NodeJS, MongoDB",
"private": true,
"main": "server.js",
"repository": "https://github.com/rfprod/ng2nmc.git",
"bugs": "https://github.com/rfprod/ng2nmc/issues",
"homepage": "https://github.com/rfprod/ng2nmc",
"keywords": [
"MongoDB",
"Mongoose",
"NodeJS",
"ExpressJS",
"Angular",
"D3",
"JavaScript",
"TypeScript"
],
"engines": {
"node": ">= 8.1.0",
"npm": ">= 5.1.0"
},
"dependencies": {
"@angular/animations": "6.1.9",
"@angular/cdk": "^6.4.7",
"@angular/common": "6.1.9",
"@angular/compiler": "6.1.9",
"@angular/core": "6.1.9",
"@angular/flex-layout": "^6.0.0-beta.18",
"@angular/forms": "6.1.9",
"@angular/http": "6.1.9",
"@angular/material": "^6.4.7",
"@angular/material-moment-adapter": "^6.4.7",
"@angular/platform-browser": "6.1.9",
"@angular/platform-browser-dynamic": "6.1.9",
"@angular/router": "6.1.9",
"@types/core-js": "^2.5.0",
"@types/jasmine": "^2.8.8",
"@types/node": "^10.11.0",
"components-font-awesome": "^5.0.6",
"connect-mongodb-session": "^2.0.3",
"core-js": "^2.5.7",
"d3": "^3.5.17",
"dotenv": "^6.0.0",
"express": "^4.16.3",
"express-session": "^1.15.6",
"express-ws": "^4.0.0",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^6.0.0",
"gulp-concat": "^2.6.1",
"gulp-cssnano": "^2.1.3",
"gulp-eslint": "^5.0.0",
"gulp-hashsum": "^1.2.0",
"gulp-mocha": "^6.0.0",
"gulp-plumber": "^1.2.0",
"gulp-rename": "^1.4.0",
"gulp-sass": "^4.0.1",
"gulp-systemjs-builder": "^0.15.0",
"gulp-tslint": "^8.1.3",
"gulp-uglify": "^3.0.1",
"hammerjs": "^2.0.8",
"jasmine-core": "^3.2.1",
"karma": "^3.0.0",
"karma-redirect-preprocessor": "^0.1.1",
"material-design-icon-fonts": "^3.0.1",
"moment": "^2.22.2",
"mongoose": "^5.2.17",
"ng2-nvd3": "^2.0.0",
"nodemailer": "^4.6.8",
"nvd3": "^1.8.6",
"passport": "^0.4.0",
"passport-local": "^1.0.0",
"reflect-metadata": "^0.1.12",
"run-sequence": "^2.2.1",
"rxjs": "6.3.3",
"systemjs": "0.21.5",
"traceur": "^0.0.111",
"tslib": "^1.9.3",
"tslint": "^5.11.0",
"typescript": "^3.0.3",
"web-animations-js": "^2.3.1",
"ws": "^6.0.0",
"zone.js": "^0.8.26"
},
"devDependencies": {
"chai": "^4.2.0",
"cheerio": "^1.0.0-rc.2",
"eslint": "^5.6.0",
"karma-chrome-launcher": "^2.2.0",
"karma-jasmine": "^1.1.2",
"mocha": "^5.2.0",
"protractor": "^5.4.1",
"request": "^2.88.0",
"string": "^3.3.3"
},
"scripts": {
"prestart": "npm install && npm run clear-ts-build",
"start": "gulp",
"pretest": "npm install",
"test": "echo 'WARNING: npm test is not configured yet\nUse one of these depending on what do you want to test:\nnpm run client-test\nnpm run client-test-single-run\nnpm run server-test' && exit 1",
"client-test": "gulp watch-client-and-test",
"client-test-single-run": "gulp client-unit-test-single-run",
"clear-ts-build": "find ./public/app/ ./test/client/ -type f -name '*.js' -delete && find ./public/app/ ./test/client/ -type f -name '*.js.map' -delete",
"server-test": "gulp server-test",
"lint": "gulp watch-and-lint",
"lint-single-run": "gulp lint",
"preupdate-webdriver": "npm install",
"update-webdriver": "webdriver-manager update",
"preprotractor": "npm run update-webdriver",
"protractor": "protractor test/protractor.conf.js",
"mongo-kill": "killall -15 mongod",
"mongo-start": "./check-db-dir.sh && ./mongo-start.sh",
"mongo-repair": "./check-db-dir.sh && ./mongo-repair.sh",
"tsc": "tsc",
"tsc:w": "tsc -w"
}
}