-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 3.38 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
{
"name": "webpack2-react-redux-budget-app-sample",
"version": "2.0.0",
"private": true,
"description": "Budgeting App Sample - React, Redux, Webpack 2",
"license": "MIT",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"coverage": "jest --coverage",
"start": "webpack-dev-server",
"prod": "cross-env NODE_ENV=production webpack-dev-server --env.prod=true",
"build": "rimraf build && cross-env NODE_ENV=production webpack --env.prod=true --env.sw=true",
"serve": "pushstate-server build/ 3000",
"perf": "rimraf *.report.dom.html && npm run build && (npm run serve & lighthouse http://localhost:3000 --view)",
"perf-live": "lighthouse https://budgeting-a937b.firebaseapp.com/budget --view",
"deploy-github": "npm run build && gh-pages -d build",
"deploy-firebase": "npm run build && firebase deploy",
"lint": "eslint ./app -f table",
"lint:fix": "eslint ./app -f table --fix",
"update-types": "flow-typed install",
"flow": "flow",
"dll": "webpack --config webpack.dll.js",
"postinstall": "rimraf .cache-loader & npm run dll"
},
"devDependencies": {
"add-asset-html-webpack-plugin": "^2.1.1",
"autoprefixer": "^7.1.4",
"babel-core": "^6.26.0",
"babel-eslint": "^8.1.1",
"babel-loader": "^7.1.2",
"babel-plugin-dynamic-import-node": "^1.0.2",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.23.0",
"cross-env": "5.0.5",
"css-loader": "^0.28.7",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.14.0",
"eslint-config-airbnb": "^15.1.0",
"eslint-config-prettier": "^2.3.0",
"eslint-plugin-flowtype": "^2.35.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-prettier": "^2.2.0",
"eslint-plugin-react": "^7.1.0",
"extract-text-webpack-plugin": "3.0.0",
"file-loader": "0.11.2",
"firebase-tools": "^3.10.0",
"flow-bin": "^0.61.0",
"flow-typed": "^2.1.5",
"html-webpack-plugin": "2.30.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^21.0.2",
"lighthouse": "^2.4.0",
"node-sass": "^4.5.3",
"postcss-loader": "^2.0.6",
"prettier": "1.6.1",
"pushstate-server": "3.0.1",
"react-test-renderer": "16.0.0-beta.5",
"redux-mock-store": "^1.2.3",
"rimraf": "2.6.1",
"sass-loader": "6.0.6",
"script-ext-html-webpack-plugin": "^1.8.5",
"style-loader": "0.18.2",
"sw-precache-webpack-plugin": "^0.11.4",
"thread-loader": "^1.1.1",
"uglify-js": "3.0.28",
"uglifyjs-webpack-plugin": "0.4.6",
"webpack": "^3.5.6",
"webpack-dev-server": "^2.7.1"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"cache-loader": "^1.0.3",
"classnames": "^2.2.5",
"coveralls": "^2.13.1",
"d3": "4.10.2",
"prop-types": "^15.5.10",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-hot-loader": "^3.0.0-beta.7",
"react-redux": "5.0.6",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.0",
"redux": "3.7.2",
"redux-thunk": "2.2.0",
"reselect": "^3.0.1"
}
}