-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
52 lines (52 loc) · 1.21 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
{
"name": "phoenix-chat",
"version": "1.0.0",
"description": "Extensible React component for real-time chat with PhoenixChat",
"main": "./dist/PhoenixChat.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "babel src --watch --out-dir dist",
"build": "babel src --out-dir dist"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/LearnPhoenix/phoenix-chat.git"
},
"keywords": [
"phoenix",
"phoenix-chat",
"learnphoenix",
"learn-phoenix",
"elixir",
"erlang",
"react",
"channels",
"chat"
],
"author": "Sam Corcos <sam@learnphoenix.io> (https://learnphoenix.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/LearnPhoenix/phoenix-chat/issues"
},
"homepage": "https://github.com/LearnPhoenix/phoenix-chat#readme",
"devDependencies": {
"babel-cli": "^6.14.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-react": "^6.11.1",
"babel-preset-stage-0": "^6.5.0"
},
"peerDependencies": {
"react": "^15.0.0"
},
"babel": {
"presets": [
"es2015",
"react",
"stage-0"
]
},
"dependencies": {
"phoenix": "^1.2.0",
"uuid": "^2.0.2"
}
}