-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.83 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
{
"name": "random-quotes",
"version": "1.0.0",
"private": true,
"description": "Random quotes app built with React, Redux-Saga and Firebase",
"main": "index.js",
"repository": "https://github.com/priscilawebdev/random-quotes.git",
"author": "Priscila Oliveira <[email protected]>",
"license": "UNLICENSED",
"dependencies": {
"babel-polyfill": "^6.26.0",
"bootstrap-sass": "^3.3.7",
"chalk": "^2.2.0",
"express": "^4.16.2",
"firebase": "^4.6.2",
"glamor": "^2.20.40",
"glamorous": "^4.11.0",
"history": "^4.7.2",
"intl": "^1.2.5",
"material-ui": "^0.20.0",
"node-sass": "^4.5.3",
"open": "^0.0.5",
"prop-types": "^15.6.0",
"react": "^16.0.0",
"react-dom": "^16.0.0",
"react-intl": "^2.4.0",
"react-loadable": "^5.3.1",
"react-redux": "^5.0.6",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-router-redux": "^5.0.0-alpha.6",
"redux": "^3.7.2",
"redux-action-buffer": "^1.1.0",
"redux-form": "^7.1.2",
"redux-persist": "^5.4.0",
"redux-saga": "^0.16.0",
"redux-saga-firebase": "^0.7.1",
"rimraf": "^2.6.2",
"url-regex": "^4.1.1"
},
"devDependencies": {
"babel-cli": "6.24.1",
"babel-eslint": "7.2.3",
"babel-loader": "^7.1.2",
"babel-plugin-dynamic-import-node": "^1.1.0",
"babel-plugin-module-resolver": "^2.7.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-preset-env": "1.5.1",
"babel-preset-react": "6.16.0",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-0": "6.16.0",
"circular-dependency-plugin": "^4.2.0",
"compression-webpack-plugin": "^1.0.1",
"copy-webpack-plugin": "^4.2.0",
"css-loader": "0.25.0",
"eslint": "^4.15.0",
"eslint-config-airbnb": "15.0.1",
"eslint-config-airbnb-base": "11.2.0",
"eslint-plugin-import": "2.7.0",
"eslint-plugin-jsx-a11y": "5.0.3",
"eslint-plugin-react": "7.0.1",
"eslint-watch": "^3.1.2",
"extract-text-webpack-plugin": "2.1.0",
"file-loader": "0.11.1",
"html-webpack-plugin": "^2.30.1",
"image-webpack-loader": "^3.4.2",
"npm-run-all": "^4.1.2",
"sass-loader": "^6.0.6",
"style-loader": "0.16.1",
"webpack": "^3.8.1",
"webpack-hot-middleware": "^2.20.0",
"webpack-merge": "^4.1.0"
},
"scripts": {
"prestart": "node tools/startMessage.js",
"start": "npm-run-all --parallel dev lint:watch",
"dev": "webpack-dev-server --inline --hot --colors --progress --open --config webpack.dev.js",
"lint": "eslint ./src",
"lint:watch": "esw --watch ./src",
"clean": "rimraf ./dist/*",
"prebuild": "npm-run-all clean lint",
"build": "node ./tools/build.js",
"postbuild": "node ./tools/distServer.js",
"postinstall": "npm run clean && node ./tools/build.js",
"herokustart": "node ./tools/distServer.js"
}
}