-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
89 lines (89 loc) · 2.23 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
86
87
88
89
{
"name": "5th-4man-front",
"version": "0.1.0",
"private": true,
"dependencies": {
"@rmwc/chip": "^5.7.0",
"antd": "^3.25.0",
"axios": "^0.19.0",
"babel-plugin-import": "^1.12.2",
"customize-cra": "^0.8.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.4.0",
"immer": "^5.0.0",
"less": "^3.10.3",
"less-loader": "^5.0.0",
"moment": "^2.24.0",
"node-sass": "^4.13.0",
"prop-types": "^15.7.2",
"react": "^16.11.0",
"react-app-rewired": "^2.1.4",
"react-dom": "^16.11.0",
"react-redux": "^7.1.1",
"react-router-dom": "^5.1.2",
"react-scripts": "3.2.0",
"redux": "^4.0.4",
"redux-actions": "^2.6.5",
"redux-saga": "^1.1.1",
"styled-components": "^4.4.1",
"sweetalert": "^2.1.2"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
"eject": "react-scripts eject",
"s3": "aws s3 sync build/ s3://ggh.io",
"cloudfront": "aws cloudfront create-invalidation --distribution-id 'E3ETSXEETH5DOT' --paths '/*'",
"deploy": "yarn build && npm run s3 && npm run cloudfront"
},
"eslintConfig": {
"extends": [
"airbnb",
"prettier"
],
"rules": {
"react/prefer-stateless-function": 0,
"react/jsx-one-expression-per-line": 0,
"react/prop-types": 0,
"react/no-typos": 0,
"react/jsx-props-no-spreading": 0,
"no-underscore-dangle": 0,
"import/prefer-default-export": 0,
"no-param-reassign": 0,
"default-case": 0,
"consistent-return": 0,
"react/no-array-index-key": 0,
"import/no-named-as-default": 0,
"import/no-named-as-default-member": 0,
"no-return-await": 0,
"camelcase": 0,
"react/jsx-wrap-multilines": 0,
"no-nested-ternary": 0
},
"env": {
"browser": true
},
"settings": {
"import/resolver": {
"node": {
"paths": [
"src"
]
}
}
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}