This repository was archived by the owner on May 27, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (94 loc) · 3.17 KB
/
package.json
File metadata and controls
95 lines (94 loc) · 3.17 KB
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
{
"name": "serverless-react-ssr",
"version": "0.1.0",
"description": "Serverless React Project Template",
"main": "handler.ts",
"scripts": {
"build:server": "BABEL_ENV=serverless NODE_ENV=production sls webpack",
"build:static": "BABEL_ENV=production NODE_ENV=production webpack --config config/webpack/webpack.config.static.js",
"profile": "BABEL_ENV=production NODE_ENV=production webpack --config config/webpack/webpack.config.static.js --profile --json > dist/stats.json && webpack-bundle-analyzer dist/stats.json dist --mode static --no-open --report dist/report.html",
"start:server": "BABEL_ENV=serverless NODE_ENV=development sls offline start --dontPrintOutput --host 0.0.0.0 --port 3001",
"start:static": "BABEL_ENV=development NODE_ENV=development webpack-dev-server --config config/webpack/webpack.config.static.js",
"test": "NODE_ENV=test jest",
"tsc": "tsc --project tsconfig.json",
"tslint": "tslint --project tsconfig.json",
"tslint:fix": "tslint --fix --project tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jgeschwendt/serverless-react-ssr.git"
},
"keywords": [
"aws",
"serverless",
"react"
],
"author": "jlg",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/jgeschwendt/serverless-react-ssr/issues"
},
"homepage": "https://github.com/jgeschwendt/serverless-react-ssr#readme",
"private": true,
"resolutions": {
"graphql": "14.5.8"
},
"dependencies": {
"@loadable/component": "5.11.0",
"@loadable/server": "5.11.0",
"apollo-cache-inmemory": "1.6.3",
"apollo-client": "2.6.4",
"apollo-link-http": "1.5.16",
"apollo-link-schema": "1.2.4",
"graphql": "14.5.8",
"graphql-tag": "2.10.1",
"isomorphic-fetch": "2.2.1",
"react": "16.12.0",
"react-apollo": "2.5.8",
"react-dom": "16.12.0",
"react-ga": "2.7.0",
"react-helmet": "5.2.1",
"react-redux": "5.1.2",
"react-router": "5.1.2",
"react-router-config": "5.1.1",
"react-router-dom": "5.1.2",
"redux": "4.0.4",
"redux-form":"7.4.2",
"sitemap": "2.2.0",
"styled-components": "4.4.1"
},
"devDependencies": {
"@babel/core": "7.7.5",
"@babel/preset-env": "7.7.5",
"@babel/preset-react": "7.7.4",
"@babel/preset-typescript": "7.7.4",
"@loadable/babel-plugin": "5.11.0",
"@loadable/webpack-plugin": "5.7.1",
"@types/react": "16.9.15",
"@types/react-dom": "16.9.4",
"aws-sdk": "2.585.0",
"babel-loader": "8.0.6",
"babel-plugin-module-resolver": "3.2.0",
"babel-plugin-styled-components": "1.10.6",
"circular-dependency-plugin": "5.2.0",
"jest": "24.9.0",
"npm-run-all": "4.1.5",
"serverless": "1.66.0",
"serverless-finch": "2.4.3",
"serverless-offline": "4.10.6",
"serverless-webpack": "5.3.1",
"tslint": "5.20.0",
"tslint-config-standard": "8.0.1",
"tslint-loader": "3.6.0",
"tslint-react": "3.6.0",
"typescript": "3.7.3",
"webpack": "4.41.2",
"webpack-bundle-analyzer": "3.6.0",
"webpack-cli": "3.3.10",
"webpack-dev-server": "3.9.0",
"webpack-node-externals": "1.7.2"
},
"peerDependencies": {
"aws-sdk": "*"
}
}