-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
85 lines (85 loc) · 2.22 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
{
"name": "react-redux-aws-amplify-boilerplate",
"version": "0.1.0",
"private": true,
"scripts": {
"lint": "eslint --debug src/",
"lint:write": "eslint --debug src/ --fix",
"prettier": "prettier --write src/**/*.js",
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"predeploy": "yarn run build",
"deploy": "aws s3 sync build/ s3://react-redux-aws-amplify-boilerplate --delete",
"postdeploy": "aws cloudfront create-invalidation --distribution-id E1M8YG6CJ4ZWH2 --paths /*"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.(js|jsx)": [
"yarn lint:write",
"git add"
]
},
"dependencies": {
"@rematch/core": "1.0.0-beta.4",
"@rematch/select": "2.0.0",
"aws-amplify": "1.0.8",
"formik": "1.1.2",
"husky": "1.2.0",
"lint-staged": "8.1.0",
"lodash": "4.17.11",
"prop-types": "15.6.2",
"react": "16.6.0",
"react-bootstrap": "0.32.3",
"react-dom": "16.6.0",
"react-dropzone": "5.0.1",
"react-redux": "5.0.7",
"react-router-bootstrap": "0.24.4",
"react-router-dom": "4.3.1",
"react-scripts": "1.1.5",
"yup": "0.26.3"
},
"devDependencies": {
"babel-eslint": "10.0.1",
"enzyme": "3.6.0",
"enzyme-adapter-react-16": "1.5.0",
"eslint": "5.8.0",
"eslint-config-airbnb": "17.1.0",
"eslint-config-jest-enzyme": "7.0.0",
"eslint-config-prettier": "3.1.0",
"eslint-plugin-babel": "5.2.1",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jest": "21.26.2",
"eslint-plugin-jsx-a11y": "6.1.2",
"eslint-plugin-prettier": "3.0.0",
"eslint-plugin-react": "7.11.1",
"prettier": "1.14.3"
},
"jest": {
"collectCoverageFrom": [
"src/**/*.{js,jsx}",
"!src/**/index.js",
"!src/config/*.js",
"!src/store.js",
"!src/**/validationSchema.js",
"!src/Alert/AlertContainer.js",
"!src/Header/HeaderContainer.js"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 90,
"lines": 90,
"statements": 90
}
}
},
"prettier": {
"tabWidth": 6
}
}