-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
73 lines (73 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
{
"name": "serverless-isomorphic-react-boilerplate",
"version": "0.0.1",
"main": "handler.js",
"scripts": {
"test": "jest --coverage",
"offline": "sls offline start",
"start": "webpack-dev-server --config webpack/webpack.dev.config.js",
"dev": "webpack --config webpack/webpack.dev.config.js --watch",
"prod": "webpack --config webpack/webpack.prod.config.js",
"sw": "webpack --config webpack/webpack.sw.config.js",
"build": "webpack --config webpack/webpack.build.config.js",
"deploy": "yarn prod && yarn sw && sls deploy && aws s3 sync ./build/ s3://serverless-react-demo-assets/"
},
"license": "MIT",
"dependencies": {
"isomorphic-fetch": "^2.2.1",
"mime": "^2.2.0",
"mime-types": "^2.1.17",
"prismic-javascript": "^1.5.0-beta.1",
"prop-types": "^15.5.8",
"react": "16.2",
"react-dom": "16.2",
"react-helmet": "^5.2.0",
"react-lazyload": "^2.3.0",
"react-loadable": "^5.3.1",
"react-redux": "^5.0.3",
"react-router": "^4.2.0",
"react-router-config": "^1.0.0-beta.4",
"react-router-dom": "^4.2.2",
"react-router-transition": "^1.2.0",
"redux": "^3.6.0",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"serialize-javascript": "^1.4.0",
"styled-components": "^3.1.6",
"webfontloader": "^1.6.28"
},
"devDependencies": {
"aws-sdk": "^2.41.0",
"babel-core": "^6.23.1",
"babel-eslint": "^8.2.1",
"babel-loader": "^7.1.2",
"babel-plugin-import-inspector": "^2.0.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"clean-webpack-plugin": "^0.1.17",
"compression-webpack-plugin": "^1.1.3",
"eslint": "^4.17.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.6.1",
"file-loader": "^1.1.6",
"html-webpack-plugin": "^2.28.0",
"import-inspector": "^2.0.0",
"jest": "^22.2.1",
"serverless": "^1.11.0",
"serverless-offline": "https://github.com/dpeek/serverless-offline.git#binary-response",
"serverless-plugin-warmup": "^3.3.0-rc.1",
"serverless-webpack": "^4.2.0",
"webpack": "^3.10.0",
"webpack-bundle-analyzer": "^2.9.2",
"webpack-dev-server": "^2.11.1",
"webpack-manifest-plugin": "^1.1.0"
}
}