-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.15 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
{
"name": "react-webpack",
"version": "1.0.0",
"description": "A boilerplate to build web applications using React, React-router, Mobx and Webpack.",
"main": "index.jsx",
"scripts": {
"build": "webpack --config ./webpack.config.prod.js",
"dev": "webpack-dev-server --config ./webpack.config.dev.js",
"lint": "eslint --fix --ext .js,.jsx .",
"prettier": "prettier --write .",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thomas367/react-webpack.git"
},
"keywords": [],
"author": "Thomas Liakos",
"license": "ISC",
"bugs": {
"url": "https://github.com/thomas367/react-webpack/issues"
},
"homepage": "https://github.com/thomas367/react-webpack#readme",
"dependencies": {
"mobx": "^6.5.0",
"mobx-react": "^7.3.0",
"prop-types": "^15.8.1",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"react-router-dom": "^6.4.2"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.19.6",
"@babel/preset-env": "^7.19.4",
"@babel/preset-react": "^7.18.6",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.2.5",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^6.7.1",
"eslint": "^7.0.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-webpack": "^0.13.2",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.31.10",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^29.3.1",
"mini-css-extract-plugin": "^2.6.1",
"node-sass": "^7.0.3",
"prettier": "^2.7.1",
"sass-loader": "^13.1.0",
"terser-webpack-plugin": "^5.3.6",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.11.1"
}
}