-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.03 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
{
"name": "basic-chat",
"version": "1.0.0",
"description": "Basic Chat Implementation",
"main": "lib/index.js",
"scripts": {
"start": "node scripts/server.js"
},
"repository": {
"type": "git",
"url": "https://github.com/maxgurewitz/basic-chat.git"
},
"author": "Max Gurewitz",
"license": "ISC",
"bugs": {
"url": "https://github.com/maxgurewitz/basic-chat/issues"
},
"homepage": "https://github.com/maxgurewitz/basic-chat",
"devDependencies": {
"gulp": "*",
"gulp-uglify": "*",
"gulp-browserify": "*",
"gulp-nodemon": "*",
"gulp-jshint": "*",
"del": "*",
"gulp-react": "*",
"gulp-sass": "*",
"gulp-rename": "*",
"reactify": "*",
"react": "*",
"socket.io-client": "*",
"gulp-gzip": "*",
"jquery": "*",
"google-images": "*",
"debowerify": "*"
},
"dependencies": {
"lodash": "*",
"jade": "*",
"express": "*",
"body-parser": "*",
"morgan": "*",
"highland": "git://github.com/caolan/highland",
"socket.io": "*"
}
}