-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.68 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.68 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
{
"name": "webpack-starter",
"version": "1.0.0",
"description": "starter template for my webpack projects",
"main": "index.js",
"scripts": {
"build": "webpack --config webpack/webpack.dev.config.js",
"dev": "webpack-dev-server --config webpack/webpack.dev.config.js --hot",
"lint": "eslint ./src"
},
"author": "Abogalambo",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"@fortawesome/fontawesome-svg-core": "^1.2.19",
"@fortawesome/free-brands-svg-icons": "^5.9.0",
"@fortawesome/free-regular-svg-icons": "^5.9.0",
"@fortawesome/free-solid-svg-icons": "^5.9.0",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.0.0",
"eslint": "^6.0.0",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-react-hooks": "^1.7.0",
"eslint-plugin-react-redux": "^3.0.1",
"file-loader": "^4.0.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.7.0",
"prop-types": "^15.7.2",
"style-loader": "^0.23.1",
"webpack": "^4.35.0",
"webpack-cli": "^3.3.4",
"webpack-dev-server": "^3.7.2"
},
"dependencies": {
"@fortawesome/react-fontawesome": "^0.1.4",
"classnames": "^2.2.6",
"firebase": "^7.5.0",
"firebaseui": "^4.4.0",
"lodash": "^4.17.19",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-redux": "^7.1.0",
"react-router-dom": "^5.1.2",
"react-sortable-hoc": "^1.11.0",
"redux": "^4.0.1",
"redux-promise-middleware": "^6.1.2",
"redux-thunk": "^2.3.0",
"reset-css": "^4.0.1",
"url-regex": "^5.0.0"
}
}