-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.58 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
{
"name": "family-react",
"version": "0.1.0",
"private": true,
"homepage": "https://d2av4q043ev2lp.cloudfront.net/",
"dependencies": {
"aws-amplify": "^0.2.11",
"aws-amplify-react": "^0.1.36",
"aws-sdk": "^2.205.0",
"classnames": "^2.2.5",
"fetch-jsonp": "^1.1.3",
"husky": "^0.14.3",
"keycode": "^2.1.9",
"lint-staged": "^7.0.0",
"material-ui": "^1.0.0-beta.35",
"prettier": "^1.11.1",
"prop-types": "^15.6.1",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-event-listener": "^0.5.3",
"react-redux": "^5.0.7",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"react-router-redux": "next",
"react-scripts": "1.1.1",
"recompose": "^0.26.0",
"redux": "^3.7.2",
"redux-form": "^7.3.0",
"redux-form-material-ui": "^5.0.0-beta.2",
"redux-persist": "^5.9.1",
"redux-persist-transform-filter": "^0.0.16",
"redux-thunk": "^2.2.0",
"sanitize.css": "^5.0.0",
"superagent": "^3.8.2"
},
"lint-staged": {
"src/**/*.{js,jsx,json,css}": [
"prettier --single-quote --write",
"git add"
]
},
"scripts": {
"prebuild": "aws s3 cp s3://familyreact-hosting-mobilehub-1016334214/aws-exports.js ./src/aws-exports.js",
"precommit": "lint-staged",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"serve": "serve -s build",
"predeploy": "react-scripts build",
"deploy": "aws s3 sync build s3://familyreact-hosting-mobilehub-150587892/family-react"
}
}