-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.75 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
{
"name": "credit-site-client",
"version": "0.0.0",
"scripts": {
"eslint": "eslint src",
"eslint:fix": "eslint src --fix",
"prettier": "prettier --write \"src/**/*.+(js|jsx)\"",
"start": "webpack-dev-server --open --mode development --progress --colors",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --mode production"
},
"repository": {
"type": "git",
"url": "https://github.com/AlexeyKorkoza/credit-site.git"
},
"keywords": [
"react"
],
"author": "AlexeyKorkoza",
"license": "MIT",
"bugs": {
"url": "https://github.com/AlexeyKorkoza/credit-site/issues"
},
"homepage": "https://github.com/AlexeyKorkoza/credit-site#readme",
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"dependencies": {
"@babel/runtime": "^7.8.7",
"config": "^3.3.0",
"date-fns": "^2.14.0",
"fetch-interceptor": "^1.1.0",
"prop-types": "^15.7.2",
"query-string": "^6.13.1",
"react": "^16.13.0",
"react-datepicker": "^3.0.0",
"react-dom": "^16.13.0",
"react-hook-form": "^5.1.1",
"react-notifications-component": "^2.4.0",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"react-select": "^3.0.8",
"react-with-styles": "^4.1.0",
"styled-components": "^5.0.1",
"uuid": "^7.0.2",
"yup": "^0.28.3"
},
"devDependencies": {
"@babel/core": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-proposal-export-default-from": "^7.8.3",
"@babel/plugin-proposal-object-rest-spread": "^7.8.3",
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.7",
"@babel/preset-react": "^7.8.3",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.0.6",
"compression-webpack-plugin": "^3.1.0",
"copy-webpack-plugin": "^5.1.1",
"css-loader": "^3.4.2",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.19.0",
"eslint-plugin-react-hooks": "^4.0.8",
"file-loader": "^6.0.0",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^4.3.0",
"husky": "^4.2.5",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"raw-loader": "^4.0.0",
"react-hot-loader": "^4.12.20",
"react-svg-loader": "^3.0.3",
"source-map-loader": "^0.2.4",
"style-loader": "^1.1.3",
"terser-webpack-plugin": "^3.0.1",
"url-loader": "^4.0.0",
"webpack": "^4.42.0",
"webpack-bundle-analyzer": "^3.7.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
}
}