forked from prescottprue/react-redux-firebase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 3.34 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "react-redux-firebase-material-example",
"version": "0.0.1",
"description": "Complete react-redux-firebase Material-UI app.",
"main": "index.js",
"scripts": {
"clean": "rimraf dist",
"compile": "node build/scripts/compile",
"build": "npm run clean && cross-env NODE_ENV=production npm run compile",
"build:prod": "echo \"build:prod is deprecated. Use npm run build.\" && npm run build",
"start": "cross-env NODE_ENV=development webpack-dashboard -p 1234 -c cyan -m -t material -- node build/scripts/start",
"start:simple": "cross-env NODE_ENV=development node build/scripts/start",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"format": "prettier --single-quote --no-semi --trailing-comma none --write \"src/**/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/testuser/material.git"
},
"author": "testuser (https://github.com/testuser)",
"license": "MIT",
"dependencies": {
"firebase": "^4.12.1",
"lodash": "^4.17.4",
"material-ui": "^0.19.1",
"normalize.css": "^7.0.0",
"object-assign": "^4.1.1",
"promise": "^7.1.1",
"prop-types": "^15.6.1",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-google-button": "^0.3.0",
"react-redux": "^5.0.4",
"react-redux-firebase": "*",
"react-router": "^3.0.0",
"react-tap-event-plugin": "^2.0.1",
"recompose": "^0.26.0",
"redbox-react": "^1.3.6",
"redux": "^3.6.0",
"redux-auth-wrapper": "^1.0.0",
"redux-form": "^6.6.1",
"redux-form-material-ui": "^4.2.0",
"redux-thunk": "^2.2.0",
"whatwg-fetch": "^2.0.3"
},
"devDependencies": {
"babel-core": "^6.24.1",
"babel-eslint": "^7.2.3",
"babel-loader": "^7.0.0",
"babel-plugin-lodash": "^3.2.11",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-export-extensions": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-env": "^1.4.0",
"babel-preset-react": "^6.24.1",
"babel-runtime": "^6.20.0",
"chalk": "^1.1.3",
"compression": "^1.6.2",
"connect-history-api-fallback": "^1.3.0",
"cross-env": "^5.0.0",
"css-loader": "^0.28.1",
"eslint": "^3.19.0",
"eslint-config-prettier": "^2.3.0",
"eslint-config-standard": "^10.2.1",
"eslint-config-standard-react": "^5.0.0",
"eslint-plugin-babel": "^4.1.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-node": "^4.2.2",
"eslint-plugin-prettier": "^2.1.2",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-react": "^7.0.1",
"eslint-plugin-standard": "^3.0.1",
"express": "^4.14.0",
"extract-text-webpack-plugin": "^2.1.0",
"favicons-webpack-plugin": "0.0.7",
"figures": "^2.0.0",
"file-loader": "^0.11.1",
"fs-extra": "^3.0.1",
"html-webpack-plugin": "^2.29.0",
"husky": "^0.14.3",
"ip": "^1.1.5",
"node-sass": "^4.5.3",
"prettier": "^1.5.3",
"rimraf": "^2.6.1",
"sass-loader": "^6.0.5",
"style-loader": "^0.17.0",
"url-loader": "^0.5.8",
"webpack": "^2.5.1",
"webpack-dashboard": "^0.4.0",
"webpack-dev-middleware": "^1.11.0",
"webpack-hot-middleware": "^2.13.2",
"yargs": "^8.0.1"
}
}