-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.33 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.33 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "react-boilerplate",
"version": "1.0.0",
"description": "Custom build React with webpack",
"main": "./src/index.js",
"scripts": {
"start": "webpack serve --open --progress --color --config ./config/webpack.dev.js",
"build": "webpack --config ./config/webpack.prod.js",
"predeploy": "yarn build",
"deploy": "gh-pages -d dist",
"serve": "serve -s ./dist/",
"lint": "eslint --ext js,jsx,ts,tsx src/",
"lint:fix": "eslint --fix --ext js,jsx,ts,tsx src/",
"format": "prettier --write \"**/*.+(js|jsx|json|yml|yaml|css|md|vue)\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/DungGramer/react-boilerplate.git"
},
"keywords": [
"react"
],
"author": "DungGramer",
"license": "ISC",
"bugs": {
"url": "https://github.com/DungGramer/react-boilerplate/issues"
},
"homepage": "https://dunggramer.github.io/split-button",
"dependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^5.3.0"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-react": "^7.16.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.1",
"@swc/cli": "^0.1.51",
"@swc/core": "^1.2.106",
"babel-loader": "^8.2.3",
"browserslist": "^4.17.6",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^9.0.1",
"core-js": "^3.19.1",
"css-loader": "^5.2.7",
"css-minimizer-webpack-plugin": "^3.1.1",
"esbuild-loader": "^2.16.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"file-loader": "^6.2.0",
"gh-pages": "^3.2.3",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.4.3",
"node-sass": "^6.0.1",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-loader": "^6.2.0",
"postcss-normalize": "^10.0.1",
"postcss-preset-env": "^6.7.0",
"prettier": "^2.4.1",
"react-refresh": "^0.10.0",
"sass-loader": "^12.3.0",
"serve": "^12.0.1",
"style-loader": "^3.3.1",
"swc-loader": "^0.1.15",
"url-loader": "^4.1.1",
"webpack": "^5.61.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.8.0"
},
"browserslist": "last 2 versions"
}