-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
187 lines (187 loc) · 5.02 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
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
{
"name": "@buzzn/module_auth",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"test": "jest --coverage",
"test-watch": "jest --coverage --watch",
"dev-server": "webpack-dev-server --progress --inline --hot --port=2999",
"build": "rimraf build && webpack --config ./webpack.production.config.js --progress --profile --colors",
"compat": "npx babel app/ -d dist/",
"add-dist": "git add ."
},
"pre-commit": [
"compat",
"add-dist"
],
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/plugin-syntax-class-properties": "^7.2.0",
"@babel/plugin-syntax-object-rest-spread": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"react-hot-loader": "^4.6.3"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.2.3",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/plugin-syntax-class-properties": "^7.2.0",
"@babel/plugin-syntax-object-rest-spread": "^7.2.0",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.2.3",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"autoprefixer": "^9.4.3",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.4",
"bootstrap": "4.2.1",
"bootstrap-loader": "3.0.2",
"cross-env": "^5.2.0",
"css-loader": "^2.1.0",
"enzyme": "^3.8.0",
"eslint": "^5.11.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.12.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^3.0.1",
"font-awesome": "^4.7.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.6.0",
"jest-cli": "^23.6.0",
"nock": "^10.0.5",
"node-sass": "^4.11.0",
"postcss": "^7.0.7",
"postcss-flexbugs-fixes": "^4.1.0",
"postcss-loader": "^3.0.0",
"pre-commit": "^1.2.2",
"precss": "^4.0.0",
"prop-types": "^15.6.2",
"react": "^16.7.0",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.7.0",
"react-hot-loader": "^4.6.3",
"react-redux": "^6.0.0",
"redbox-react": "^1.6.0",
"redux": "^4.0.1",
"redux-mock-store": "^1.5.3",
"redux-saga": "^1.0.0-rc.0",
"resolve-url-loader": "^3.0.0",
"rimraf": "^2.6.2",
"sass-loader": "^7.1.0",
"stats-webpack-plugin": "^0.7.0",
"style-loader": "^0.23.1",
"tether": "^1.4.5",
"url-loader": "^1.1.2",
"webpack": "^4.28.3",
"webpack-dev-server": "^3.1.14",
"webpack-hot-middleware": "^2.24.3",
"whatwg-fetch": "^3.0.0"
},
"peerDependencies": {
"@babel/polyfill": "^7.2.5",
"bootstrap": "4.2.1",
"font-awesome": "^4.7.0",
"prop-types": "^15.6.2",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"react-redux": "^6.0.0",
"redux": "^4.0.1",
"redux-saga": "^1.0.0-rc.0",
"tether": "^1.4.5",
"whatwg-fetch": "^3.0.0"
},
"browserslist": [
"last 1 version",
"> 1%",
"IE 10"
],
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"printWidth": "120"
},
"eslintConfig": {
"parser": "babel-eslint",
"extends": [
"airbnb/base"
],
"env": {
"browser": true,
"node": true,
"mocha": true
},
"plugins": [
"react"
],
"rules": {
"max-len": [
2,
120,
2,
{
"ignoreUrls": true,
"ignoreComments": false
}
],
"react/jsx-uses-vars": 2,
"react/jsx-uses-react": 2
},
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"arrowFunctions": true,
"binaryLiterals": true,
"blockBindings": true,
"classes": true,
"defaultParams": true,
"destructuring": true,
"forOf": true,
"generators": true,
"modules": true,
"objectLiteralComputedProperties": true,
"objectLiteralDuplicateProperties": true,
"objectLiteralShorthandMethods": true,
"objectLiteralShorthandProperties": true,
"octalLiterals": true,
"regexUFlag": true,
"regexYFlag": true,
"restParams": true,
"spread": true,
"superInFunctions": true,
"templateStrings": true,
"unicodeCodePointEscapes": true,
"globalReturn": true,
"jsx": true,
"prefer-const": true
}
}
},
"jest": {
"moduleFileExtensions": [
"js",
"jsx",
"json",
"node"
],
"moduleDirectories": [
"node_modules",
"app"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/app/__mocks__/fileMock.js",
"\\.(css|less)$": "<rootDir>/app/__mocks__/styleMock.js"
}
}
}