-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.96 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": "project-thesis",
"version": "0.1.7",
"description": "An MEAN + Socket.io Project Management Web App",
"keywords": [
"angular2",
"nodejs",
"typescript"
],
"contributors": [
"Anchidin Damian <[email protected]>",
"Anastasios Gymnopoylos <[email protected]>"
],
"license": "MIT",
"private": true,
"scripts": {
"start": "node ./bin/www",
"start:watch": "nodemon ./bin/www",
"build": "del-cli public/js/app && webpack --config config/webpack.config.dev.js --progress --profile",
"build:start": "npm run build && npm start",
"build:watch": "npm run build -- --watch",
"build:prod": "del-cli public/js/app && ngc -p tsconfig.aot.json && webpack --config config/webpack.config.prod.js --progress --profile --bail && del-cli 'public/js/app/**/*.js' 'public/js/app/**/*.js.map' '!public/js/app/bundle.js' '!public/js/app/*.chunk.js' 'assets/app/**/*.ngfactory.ts' 'assets/app/**/*.shim.ts'"
},
"dependencies": {
"@angular/animations": "^4.3.2",
"@angular/cdk": "^2.0.0-beta.8",
"@angular/common": "^4.3.2",
"@angular/compiler": "^4.3.2",
"@angular/compiler-cli": "^4.3.2",
"@angular/core": "^4.3.2",
"@angular/flex-layout": "^2.0.0-beta.8",
"@angular/forms": "^4.3.2",
"@angular/http": "^4.3.2",
"@angular/material": "^2.0.0-beta.8",
"@angular/platform-browser": "^4.3.2",
"@angular/platform-browser-dynamic": "^4.3.2",
"@angular/platform-server": "^4.3.2",
"@angular/router": "^4.3.2",
"@nicky-lenaers/ngx-scroll-to": "^0.2.4",
"@types/date-fns": "^2.6.0",
"@types/highcharts": "^4.2.55",
"angular-calendar": "^0.19.0",
"angular-particle": "^1.0.3",
"angular2-jwt": "^0.2.3",
"angular2-notifications": "^0.7.4",
"body-parser": "~1.16.0",
"cookie-parser": "~1.4.3",
"core-js": "^2.4.1",
"date-fns": "^1.28.5",
"debug": "~2.6.0",
"dragula": "^3.7.2",
"express": "~4.14.1",
"hammerjs": "^2.0.8",
"hbs": "~4.0.1",
"intersection-observer": "^0.4.0",
"jsonwebtoken": "^7.3.0",
"moment": "^2.18.1",
"mongodb": "^2.2.25",
"mongoose": "^4.9.1",
"morgan": "~1.7.0",
"mydatepicker": "^1.9.12",
"ng-in-viewport": "^1.2.0",
"ng2-dragula": "^1.3.1",
"ng2-google-charts": "^2.2.0",
"ngx-contextmenu": "^1.3.4",
"rxjs": "^5.2.0",
"serve-favicon": "~2.3.2",
"socket.io": "^1.7.3",
"socket.io-client": "^1.7.3",
"time-ago-pipe": "^1.2.1",
"web-animations-js": "^2.3.1",
"zone.js": "0.8.12"
},
"devDependencies": {
"@types/core-js": "^0.9.42",
"@types/hammerjs": "^2.0.34",
"@types/node": "^7.0.8",
"@types/socket.io-client": "^1.4.29",
"angular2-router-loader": "^0.3.5",
"angular2-template-loader": "^0.6.2",
"awesome-typescript-loader": "^3.1.2",
"del-cli": "^0.2.1",
"html-loader": "^0.4.5",
"nodemon": "^1.11.0",
"raw-loader": "^0.5.1",
"typescript": "^2.4.2",
"webpack": "^2.1.0-beta.21",
"webpack-merge": "^4.1.0"
}
}