-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 2.54 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 2.54 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "cipher-bin-client",
"version": "0.1.0",
"private": true,
"dependencies": {
"axios": "^0.21.1",
"bootstrap": "^4.4.1",
"prop-types": "^15.7.2",
"query-string": "^6.9.0",
"react": "^16.12.0",
"react-bootstrap": "^1.0.0-beta.16",
"react-burger-menu": "^2.6.13",
"react-copy-to-clipboard": "^5.0.2",
"react-dom": "^16.12.0",
"react-responsive": "^8.0.1",
"react-router-dom": "^5.1.2",
"react-scripts": "3.2.0",
"uuid": "^3.3.3"
},
"scripts": {
"start": "react-scripts --openssl-legacy-provider start",
"build": "react-scripts --openssl-legacy-provider build",
"test": "react-scripts test",
"eject": "react-scripts eject",
"deploy": "npm run build && aws s3 sync build/ s3://cipherb.in/ --delete && aws cloudfront create-invalidation --distribution-id E27JG65T0O1QJP --paths \"/*\""
},
"eslintConfig": {
"extends": "airbnb",
"parser": "babel-eslint",
"plugins": [
"import"
],
"settings": {
"import/resolver": {
"node": {
"extensions": [
".js",
".jsx"
],
"paths": [
"src"
]
}
}
},
"env": {
"jest": true
},
"globals": {
"document": false,
"window": true
},
"rules": {
"react/state-in-constructor": [
0
],
"react/jsx-one-expression-per-line": [
0
],
"react/destructuring-assignment": [
0,
{
"extensions": [
".jsx"
]
}
],
"import/no-named-as-default": [
0
],
"import/no-extraneous-dependencies": [
0,
{
"devDependencies": true
}
],
"react/prefer-stateless-function": [
0,
{
"ignorePureComponents": true
}
],
"react/jsx-filename-extension": [
1,
{
"extensions": [
".js",
".jsx"
]
}
],
"react/jsx-tag-spacing": [
1
],
"jsx-a11y/label-has-for": [
1
],
"react/jsx-boolean-value": [
0
],
"react/no-array-index-key": [
0
]
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"eslint-config-airbnb": "^18.0.1",
"eslint-plugin-jsx-a11y": "^6.2.3"
}
}