-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
87 lines (87 loc) · 3.02 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": "tz",
"version": "1.0.0",
"description": "",
"main": "webpack.config.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "cross-env RUN_ENV=dev NODE_ENV=development webpack-dev-server --config ./webpack.dev.js",
"build": "cross-env RUN_ENV=build NODE_ENV=production webpack --config ./webpack.build.js --optimize-minimize",
"analyzer-build": "cross-env RUN_ENV=build NODE_ENV=production webpack --profile --json > stats.json --config ./webpack.build.js --optimize-minimize",
"analyzer": "webpack-bundle-analyzer stats.json",
"server": "cross-env RUN_ENV=server NODE_ENV=production node --harmony server/index.js",
"server-dev": "cross-env RUN_ENV=server NODE_ENV=production nodemon --harmony server/index.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"autoprefixer": "^7.2.3",
"babel-polyfill": "^6.26.0",
"bundle-loader": "^0.5.5",
"css-loader": "^0.28.7",
"date-fns": "^1.29.0",
"exif-js": "^2.3.0",
"file-loader": "^1.1.11",
"import": "^0.0.6",
"isomorphic-fetch": "^2.2.1",
"material-ui": "1.0.0-beta.32",
"material-ui-icons": "1.0.0-beta.17",
"postcss-flexbugs-fixes": "^3.2.0",
"postcss-loader": "^2.0.9",
"pouchdb-browser": "^6.4.2",
"react": "^16.1.1",
"react-dom": "^16.2.0",
"react-list": "^0.8.8",
"react-loadable": "^5.3.1",
"react-motion": "^0.5.2",
"react-photoswipe": "^1.3.0",
"react-redux": "^5.0.6",
"react-router-config": "^1.0.0-beta.4",
"react-router-dom": "^4.2.2",
"react-router-redux": "^5.0.0-alpha.8",
"react-swipeable-views": "^0.12.12",
"react-tap-event-plugin": "^3.0.2",
"redux": "^3.7.2",
"redux-form": "^7.2.0",
"redux-persist": "^5.5.0",
"redux-thunk": "^2.2.0",
"request": "^2.83.0",
"request-promise": "^4.2.2",
"reselect": "^3.0.1",
"style-loader": "^0.19.0",
"url-loader": "^0.6.2"
},
"devDependencies": {
"babel": "^6.23.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-direct-import": "^0.5.0",
"babel-plugin-dynamic-import-node": "^1.2.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-register": "^6.26.0",
"clean-webpack-plugin": "^0.1.17",
"copy-webpack-plugin": "^4.2.3",
"cross-env": "^5.1.1",
"css-modules-require-hook": "^4.2.2",
"extract-text-webpack-plugin": "^3.0.2",
"html-webpack-plugin": "^2.30.1",
"import-inspector": "^2.0.0",
"koa": "^2.4.1",
"koa-bodyparser": "^4.2.0",
"koa-router": "^7.3.0",
"koa-static": "^4.0.2",
"koa-static-cache": "^5.1.1",
"koa2-cors": "^2.0.5",
"offline-plugin": "^4.8.5",
"react-helmet": "^5.2.0",
"redux-devtools-extension": "^2.13.2",
"uglifyjs-webpack-plugin": "^1.1.8",
"webpack": "^3.8.1",
"webpack-dev-server": "^2.9.4"
}
}