-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.84 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.84 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
{
"name": "react-redux-registration-login-example",
"version": "1.0.0",
"repository": {
"type": "git",
"url": ""
},
"license": "MIT",
"scripts": {
"startlocal": "set REACT_APP_STAGE=local&& webpack-dev-server --open",
"startdev": "cross-env REACT_APP_STAGE=dev webpack-dev-server --open",
"start": "set REACT_APP_STAGE=prod&& webpack-dev-server --open",
"build": "webpack",
"deploy": "serverless deploy",
"sync": "sls s3sync"
},
"dependencies": {
"aws-amplify": "^1.1.18",
"bootstrap": "^4.2.1",
"cross-env": "^5.2.0",
"css-loader": "^2.1.0",
"formik": "^1.4.1",
"formik-effect": "^1.2.0",
"history": "^4.6.3",
"jwt-decode": "^2.2.0",
"mini-css-extract-plugin": "^0.5.0",
"react": "^16.7.0",
"react-bootstrap": "^1.0.0-beta.3",
"react-dom": "^16.7.0",
"react-modal": "^3.8.1",
"react-redux": "^5.1.1",
"react-router-bootstrap": "^0.24.4",
"react-router-dom": "^4.1.2",
"redux": "^3.7.2",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.2.0",
"reselect": "^4.0.0",
"style-loader": "^0.23.1",
"yup": "^0.26.6"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-proposal-json-strings": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/plugin-syntax-import-meta": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.0",
"babel-polyfill": "^6.26.0",
"clean-webpack-plugin": "^1.0.1",
"file-loader": "^3.0.1",
"html-webpack-plugin": "^3.0.0",
"path": "^0.12.7",
"serverless-s3-sync": "^1.7.2",
"serverless-webpack": "^5.2.0",
"webpack": "^4.0.0",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.0.0",
"webpack-node-externals": "^1.7.2"
}
}