This repository has been archived by the owner on Mar 13, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.53 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
{
"name": "brew-search",
"version": "1.0.0",
"description": "simple frontend app to hit the BrewDog beer api",
"main": "index.js",
"scripts": {
"start": "webpack-dev-server",
"clean": "rimraf dist",
"build": "cross-env npm run clean && webpack --config webpack.config.prod.js --progress --profile --colors",
"lint": "eslint ./app/**/**.js",
"precommit": "cross-env npm run lint",
"prepush": "cross-env npm run lint"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/brettinternet/brew-search.git"
},
"keywords": [
"brewdog",
"brew"
],
"author": "brettinternet",
"license": "MIT",
"bugs": {
"url": "https://github.com/brettinternet/brew-search/issues"
},
"homepage": "https://github.com/brettinternet/brew-search#readme",
"dependencies": {
"cross-env": "^5.1.3",
"moment": "^2.20.1",
"react": "^16.2.0",
"react-datepicker": "^1.1.0",
"react-dom": "^16.2.0",
"react-redux": "^5.0.6",
"react-router-dom": "^4.2.2",
"react-router-redux": "^5.0.0-alpha.9",
"redux": "^3.7.2",
"redux-immutable-state-invariant": "^2.1.0",
"redux-thunk": "^2.2.0",
"shufflejs": "^5.0.3"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-loader": "^7.1.2",
"babel-plugin-syntax-class-properties": "^6.13.0",
"babel-plugin-syntax-decorators": "^6.13.0",
"babel-plugin-syntax-object-rest-spread": "^6.13.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-2": "^6.24.1",
"copy-webpack-plugin": "^4.3.1",
"css-loader": "^0.28.9",
"eslint": "^4.15.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-loader": "^1.9.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.6",
"history": "^4.7.2",
"html-webpack-plugin": "^2.30.1",
"node-sass": "^4.7.2",
"open-browser-webpack-plugin": "^0.0.5",
"react-hot-loader": "^3.1.3",
"rimraf": "^2.6.2",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.1",
"url-loader": "^0.6.2",
"webpack": "^3.10.0",
"webpack-dev-server": "^2.11.0"
}
}