-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
106 lines (106 loc) · 3.71 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
{
"name": "indaba-client",
"version": "1.1.7",
"private": true,
"engines": {
"node": ">=10.15.0",
"npm": ">=6.4.1",
"yarn": ">=1.12.0"
},
"scripts": {
"start": "node index.js",
"develop": "webpack-dev-server --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"test": "CI=true react-scripts test --env=jsdom",
"eject": "react-scripts eject",
"lint --fix": "./node_modules/.bin/eslint --fix src",
"lint": "./node_modules/.bin/eslint src",
"stylelint": "./node_modules/.bin/stylelint \"src/styles/**/*.scss\""
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"bootstrap": "^3.3.7",
"details-element-polyfill": "^2.0.1",
"dotenv-webpack": "^1.5.4",
"express": "^4.16.2",
"file-loader": "^2.0.0",
"form-urlencoded": "^2.0.4",
"html-webpack-plugin": "^3.2.0",
"immutability-helper": "^2.2.2",
"lodash": "^4.17.4",
"moment": "^2.29.3",
"mini-css-extract-plugin": "^0.12.0",
"moment": "^2.20.1",
"path": "^0.12.7",
"prop-types": "^15.5.10",
"react": "^16.14.0",
"react-bootstrap": "^0.31.0",
"react-click-outside": "^2.3.1",
"react-cookies": "^0.1.0",
"react-dates": "18.1.0",
"react-dnd": "^2.4.0",
"react-dnd-html5-backend": "^2.4.1",
"react-dom": "^16.14.0",
"react-fa": "~5.0.0",
"react-ionicons": "^1.5.7",
"react-moment-proptypes": "^1.6.0",
"react-redux": "^5.0.4",
"react-router": "^3.0.5",
"react-router-redux": "^4.0.8",
"react-scripts": "2.1.1",
"react-scroll": "^1.8.7",
"react-select": "^1.2.1",
"react-toastify": "^4.1.0",
"redux": "^3.6.0",
"redux-devtools": "^3.4.0",
"redux-devtools-chart-monitor": "^1.6.1",
"redux-devtools-dock-monitor": "^1.1.2",
"redux-devtools-log-monitor": "^1.4.0",
"redux-form": "^7.3.0",
"redux-logger": "^3.0.1",
"redux-slider-monitor": "^2.0.0-1",
"redux-thunk": "^2.2.0",
"stylelint-webpack-plugin": "^0.10.5",
"uglifyjs-webpack-plugin": "^1.2.7",
"url-loader": "^1.0.1",
"uuid": "^3.1.0",
"whatwg-fetch": "^2.0.0"
},
"devDependencies": {
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/plugin-proposal-function-bind": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-export-namespace-from": "^7.2.0",
"@babel/preset-env": "^7.2.0",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-loader": "^8.0.4",
"css-loader": "^2.0.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.0",
"html-webpack-plugin": "^3.2.0",
"husky": "^1.3.1",
"node-sass": "^4.5.3",
"postcss-loader": "^3.0.0",
"sass-loader": "^6.0.5",
"script-ext-html-webpack-plugin": "^2.1.3",
"stylelint": "^9.9.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-order": "^2.0.0",
"webpack-cli": "^3.1.2",
"webpack-merge": "^4.1.5"
},
"husky": {
"hooks": {
"pre-push": "yarn lint && yarn stylelint"
}
}
}