-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
46 lines (46 loc) · 1.33 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": "react-firebase-chat",
"version": "1.0.0",
"description": "App para pedir la Carta a los Reyes Magos con Firebase y React",
"main": "public/index.js",
"scripts": {
"build": "webpack --colors",
"serve": "webpack-dev-server --content-base public/ --colors --progress",
"deploy": "webpack -p",
"start": "npm run build && npm run serve"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/carlosazaustre/react-firebase-chat.git"
},
"keywords": [
"react",
"firebase",
"chat"
],
"author": "Carlos Azaustre <[email protected]> (https://carlosazaustre.es/blog)",
"license": "MIT",
"bugs": {
"url": "https://github.com/carlosazaustre/react-firebase-chat/issues"
},
"homepage": "https://github.com/carlosazaustre/react-firebase-chat#readme",
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.18.2",
"babel-loader": "^6.2.8",
"babel-preset-latest": "^6.16.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"css-loader": "^0.26.0",
"extract-text-webpack-plugin": "^1.0.1",
"html-webpack-plugin": "^2.24.1",
"style-loader": "^0.13.1",
"webpack": "^1.13.3",
"webpack-dev-server": "^1.16.2"
},
"dependencies": {
"firebase": "^3.6.1",
"react": "^15.4.1",
"react-dom": "^15.4.1"
}
}