forked from DennisNeuendorfNetlight/webchat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.44 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
{
"name": "webchat",
"version": "1.0.0",
"description": "webchat example using websocket",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"postinstall": "npm run build",
"prestartdev": "npm run build",
"build": "webpack --config webpack.conf.js",
"server": "node dist/server.js -dev",
"start": "npm run server",
"startdev": "npm run server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DennisNeuendorfNetlight/webchat.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/DennisNeuendorfNetlight/webchat/issues"
},
"homepage": "https://github.com/DennisNeuendorfNetlight/webchat#readme",
"dependencies": {
"@types/compression": "0.0.33",
"@types/es6-shim": "^0.31.32",
"@types/express": "^4.0.33",
"@types/inversify": "^2.0.31",
"@types/mime": "0.0.29",
"@types/socket.io": "^1.4.27",
"awesome-typescript-loader": "^3.0.0-beta.9",
"bog": "^1.0.2",
"compression": "^1.6.2",
"es6-promise": "^3.2.1",
"es6-shim": "^0.35.1",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^2.0.0-beta.5",
"inversify": "^2.0.0-beta.8",
"inversify-dts": "^1.0.5",
"lodash": "^4.17.4",
"mime": "^1.3.4",
"reflect-metadata": "^0.1.3",
"rxjs": "^5.0.0-beta.9",
"typescript": "^2.0.3",
"webpack": "^2.2.0",
"webpack-livereload-plugin": "^0.8.1"
}
}