-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
72 lines (72 loc) · 2.15 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "simple-firebase-auth",
"version": "0.0.8",
"description": "Simplified Firebase authentication with social platform support",
"main": "dist/index",
"directories": {
"example": "example"
},
"scripts": {
"prod": "webpack --config ./example/config/webpack.config.prod.js",
"server": "babel-node example/server --presets=es2015-node5,stage-2,react",
"start": "nodemon --watch example/server --watch example/config --exec npm run server"
},
"keywords": [
"auth",
"social",
"facebook",
"login",
"google",
"firebase"
],
"author": "SSG",
"license": "ISC",
"devDependencies": {
"babel-cli": "6.14.0",
"babel-core": "6.14.0",
"babel-eslint": "6.1.2",
"babel-loader": "6.2.5",
"babel-preset-es2015": "6.14.0",
"babel-preset-es2015-node5": "^1.2.0",
"babel-preset-react": "6.11.1",
"babel-preset-stage-2": "6.13.0",
"bootstrap": "4.0.0-alpha.3",
"clean-webpack-plugin": "0.1.10",
"compass-mixins": "0.12.10",
"copy-webpack-plugin": "3.0.1",
"css-loader": "0.23.1",
"express": "4.14.0",
"express-handlebars": "3.0.0",
"extract-text-webpack-plugin": "2.0.0-beta.4",
"html-loader": "0.4.3",
"html-webpack-plugin": "2.22.0",
"image-webpack-loader": "2.0.0",
"lodash.range": "^3.2.0",
"ngrok": "2.2.2",
"node-sass": "3.8.0",
"postcss-loader": "0.9.1",
"react": "15.3.1",
"react-click-outside": "2.1.0",
"react-document-title": "2.0.2",
"react-dom": "15.3.1",
"react-hot-loader": "3.0.0-beta.2",
"react-router": "2.8.1",
"sass-loader": "4.0.0",
"style-loader": "0.13.1",
"webpack": "^2.1.0-beta.4",
"webpack-dashboard": "git+https://github.com/kyle-ssg/webpack-dashboard.git#master",
"webpack-dev-middleware": "1.7.0",
"webpack-hot-middleware": "2.12.2"
},
"peerDependencies": {
"firebase": ">=3.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SolidStateGroup/simple-firebase-auth.git"
},
"bugs": {
"url": "https://github.com/SolidStateGroup/simple-firebase-auth/issues"
},
"homepage": "https://github.com/SolidStateGroup/simple-firebase-auth#readme"
}