-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
73 lines (73 loc) · 2.4 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
{
"name": "project-thesis",
"version": "0.1.3",
"description": "An MEAN + Socket.io Project Management Web App",
"keywords": [
"angular2",
"nodejs",
"typescript"
],
"contributors": [
"Anchidin Damian <ioanagki@teiser.gr>",
"Anastasios Gymnopoylos <anasgymn@teiser.gr>"
],
"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": {
"@agm/core": "^1.0.0-beta.0",
"@angular/animations": "^4.1.0",
"@angular/common": "^4.1.0",
"@angular/compiler": "^4.1.0",
"@angular/compiler-cli": "^4.1.0",
"@angular/core": "^4.1.0",
"@angular/forms": "^4.1.0",
"@angular/http": "^4.1.0",
"@angular/material": "^2.0.0-beta.3",
"@angular/platform-browser": "^4.1.0",
"@angular/platform-browser-dynamic": "^4.1.0",
"@angular/platform-server": "^4.1.0",
"@angular/router": "^4.1.0",
"angular2-highcharts": "^0.5.5",
"body-parser": "~1.16.0",
"cookie-parser": "~1.4.3",
"core-js": "^2.4.1",
"debug": "~2.6.0",
"express": "~4.14.1",
"hammerjs": "^2.0.8",
"hbs": "~4.0.1",
"jsonwebtoken": "^7.3.0",
"moment": "^2.18.1",
"mongodb": "^2.2.26",
"morgan": "~1.7.0",
"rxjs": "^5.2.0",
"serve-favicon": "~2.3.2",
"socket.io": "^1.7.3",
"socket.io-client": "^1.7.3",
"zone.js": "^0.8.4"
},
"devDependencies": {
"@types/core-js": "^0.9.37",
"@types/googlemaps": "^3.26.11",
"@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.2.1",
"webpack": "^2.1.0-beta.21",
"webpack-merge": "^4.1.0"
}
}