-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.31 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
{
"name": "my-boilerplate",
"version": "1.0.0",
"description": "My react boilerplate",
"main": "index.js",
"scripts": {
"dev": "webpack serve --config ./config/webpack.dev.js",
"build": "NODE_ENV=production webpack --config ./config/webpack.prod.js"
},
"author": "KimKwon",
"license": "ISC",
"dependencies": {
"react": "17.0.2",
"react-dom": "17.0.2",
"react-router": "5.2.1",
"react-router-dom": "5.3.0"
},
"devDependencies": {
"@babel/core": "7.15.8",
"@babel/preset-env": "7.15.8",
"@babel/preset-react": "7.14.5",
"babel-loader": "8.2.2",
"clean-webpack-plugin": "4.0.0",
"core-js": "3.18.3",
"css-loader": "6.4.0",
"eslint": "7.32.0",
"eslint-config-airbnb": "18.2.1",
"eslint-config-prettier": "8.3.0",
"eslint-import-resolver-alias": "1.1.2",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-react": "7.26.1",
"eslint-plugin-react-hooks": "4.2.0",
"html-webpack-plugin": "5.4.0",
"mini-css-extract-plugin": "2.4.2",
"prettier": "2.4.1",
"sass": "1.43.2",
"sass-loader": "12.2.0",
"style-loader": "3.3.0",
"webpack": "5.59.0",
"webpack-cli": "4.9.1",
"webpack-dev-server": "4.3.1",
"webpack-merge": "5.8.0"
}
}