-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
41 lines (41 loc) · 1.04 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
{
"name": "slack-clone",
"version": "1.0.0",
"description": "Simple chat client with channels",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"bundle": "browserify -e ./client/index.js -o client/app.bundle.js",
"start": "nodemon --ignore db.json --ignore client app.js",
"watch": "watch 'npm run bundle' ./client"
},
"repository": {
"type": "git",
"url": "git+https://github.com/milojs/slack-clone.git"
},
"keywords": [
"slack",
"clone"
],
"author": "milojs",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/milojs/slack-clone/issues"
},
"homepage": "https://github.com/milojs/slack-clone#readme",
"dependencies": {
"express": "^4.13.3",
"milo-core": "^1.0.3",
"milo-ui": "^1.0.5",
"milojs": "^1.2.0",
"node-babel": "^0.1.2",
"protojs": "^1.0.3",
"socket.io": "^1.4.2",
"socket.io-client": "^1.4.3"
},
"devDependencies": {
"browserify": "^12.0.1",
"nodemon": "^1.11.0",
"watch": "^0.17.1"
}
}