forked from jussikinnula/angular-socket-io-chat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.33 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
{
"name": "angular2-socketio-chat-example",
"version": "0.0.5",
"description": "An example Angular 2 chat app, made on top of ExpressJS & Socket.io.",
"homepage": "https://github.com/jussikinnula/",
"repository": "https://github.com/jussikinnula/angular2-socketio-chat-example",
"author": {
"name": "Jussi Kinnula",
"email": "jussi.kinnula@frantic.com"
},
"license": "GPL-3.0",
"engines": {
"node": ">=6",
"npm": ">=3"
},
"scripts": {
"clean": "./node_modules/.bin/del ./target",
"build": "npm run build:server && npm run build:client",
"build:client": "./node_modules/.bin/webpack --config webpack.client.js",
"build:server": "./node_modules/.bin/webpack --config webpack.server.js",
"gulp": "./node_modules/.bin/gulp",
"start": "node target/assets/js/server.js",
"postinstall": "./node_modules/.bin/typings install && npm run build"
},
"dependencies": {
"@angular/common": "2.0.0-rc.2",
"@angular/compiler": "2.0.0-rc.2",
"@angular/core": "2.0.0-rc.2",
"@angular/platform-browser": "2.0.0-rc.2",
"@angular/platform-browser-dynamic": "2.0.0-rc.2",
"@angular/router-deprecated": "2.0.0-rc.2",
"autoprefixer": "~6.3.6",
"css-loader": "~0.23.1",
"del": "~2.2.1",
"del-cli": "~0.2.0",
"dotenv": "~2.0.0",
"es6-shim": "~0.35.1",
"express": "~4.13.4",
"extract-text-webpack-plugin": "~1.0.1",
"html-webpack-plugin": "~2.21.0",
"immutable": "~3.8.1",
"json-loader": "~0.5.4",
"mongoose": "~4.5.0",
"node-sass": "~3.7.0",
"postcss-loader": "~0.9.1",
"raw-loader": "~0.5.1",
"reflect-metadata": "0.1.3",
"rxjs": "5.0.0-beta.6",
"sass-loader": "~3.2.0",
"serve-static": "~1.11.1",
"socket.io": "~1.4.6",
"socket.io-client": "~1.4.6",
"style-loader": "~0.13.1",
"ts-loader": "~0.8.2",
"typescript": "~1.8.10",
"typings": "~1.2.0",
"webpack": "~1.13.1",
"zone.js": "~0.6.12"
},
"devDependencies": {
"connect-history-api-fallback": "~1.2.0",
"del": "~2.2.0",
"del-cli": "~0.2.0",
"gulp": "gulpjs/gulp.git#4.0",
"gulp-connect": "~4.1.0",
"gulp-livereload": "~3.8.1",
"gulp-nodemon": "~2.1.0",
"gulp-sourcemaps": "~2.0.0-alpha",
"gulp-tslint": "~5.0.0",
"gulp-util": "~3.0.7",
"tslint": "~3.11.0",
"webpack-livereload-plugin": "~0.8.1"
}
}