forked from dimasmith/together
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.05 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.05 KB
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
75
76
77
{
"name": "@dimasmith/together",
"version": "0.1.2",
"description": "Application for simultaneous photo viewing",
"main": "server.js",
"bin": {
"together": "./cli.js"
},
"scripts": {
"compile": "babel-node node_modules/webpack/bin/webpack.js",
"prepublish": "rm -rf ./dist && babel-node node_modules/webpack/bin/webpack.js",
"test": "mocha --compilers js:babel/register test/**/*Test.js",
"start": "babel-node ./server.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/dimasmith/together.git"
},
"keywords": [
"node",
"collaboration",
"websocket",
"flux"
],
"author": "Dmytro Kovalchuk <dimasmith@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dimasmith/together/issues"
},
"homepage": "https://github.com/dimasmith/together#readme",
"dependencies": {
"ampersand-app": "^1.0.4",
"ampersand-collection": "^1.4.5",
"ampersand-router": "^3.0.2",
"ampersand-state": "^4.5.6",
"ampersand-view": "^8.0.1",
"ampersand-view-switcher": "^2.0.0",
"babel": "^5.8.23",
"combokeys": "^2.4.3",
"commander": "^2.8.1",
"daemon": "^1.1.0",
"domready": "^1.0.8",
"express": "^4.13.3",
"fs": "0.0.2",
"http": "0.0.0",
"lodash": "^3.10.1",
"redux": "^2.0.0",
"redux-logger": "^1.0.6",
"redux-thunk": "^0.1.0",
"socket.io": "^1.3.6"
},
"devDependencies": {
"babel-core": "^5.8.24",
"babel-loader": "^5.3.2",
"babel-runtime": "^5.8.20",
"chai": "^3.2.0",
"css-loader": "^0.18.0",
"file-loader": "^0.8.4",
"html-webpack-plugin": "^1.6.1",
"image-webpack-loader": "^1.6.1",
"imagemin": "^3.2.0",
"jade": "^1.11.0",
"jade-loader": "^0.7.1",
"jscs": "^2.1.1",
"jscs-loader": "^0.2.0",
"json-loader": "^0.5.2",
"mocha": "^2.3.2",
"node-sass": "^3.3.2",
"path": "^0.11.14",
"sass-loader": "^2.0.1",
"sinon": "^1.16.1",
"style-loader": "^0.12.3",
"url-loader": "^0.5.6",
"webpack": "^1.12.0",
"webpack-dev-server": "^1.10.1"
}
}