forked from ParkYoungWoong/webpack-react
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·74 lines (74 loc) · 2.34 KB
/
package.json
File metadata and controls
executable file
·74 lines (74 loc) · 2.34 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
{
"name": "webpack-react-init",
"version": "1.0.0",
"description": "Initialize React 18 with typescript & Webpack",
"main": "main.tsx",
"scripts": {
"dev": "cross-env TS_NODE_PROJECT=\"tsconfig-for-webpack-config.json\" NODE_ENV=development webpack serve --env=dev",
"build": "rm -rf ./dist && cross-env TS_NODE_PROJECT=\"tsconfig-for-webpack-config.json\" NODE_ENV=production webpack --env=prod",
"lint": "npx eslint ./src --fix"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.23.9",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@types/compose-function": "^0.0.33",
"@types/dotenv-webpack": "^7.0.7",
"@types/lodash": "^4.14.202",
"@types/react": "^18.2.52",
"@types/react-dom": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"autoprefixer": "^10.4.17",
"babel-loader": "^9.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.0.0",
"css-minimizer-webpack-plugin": "^5.0.1",
"dotenv-webpack": "^8.0.1",
"esbuild": "^0.20.1",
"esbuild-loader": "^4.0.3",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-webpack-plugin": "^4.0.1",
"fork-ts-checker-webpack-plugin": "^9.0.2",
"html-webpack-plugin": "^5.0.0",
"mini-css-extract-plugin": "^2.8.0",
"postcss": "^8.4.33",
"postcss-loader": "^7.3.4",
"postcss-preset-env": "^9.3.0",
"prettier": "^2.8.8",
"resolve-url-loader": "^5.0.0",
"sass": "^1.70.0",
"sass-loader": "^13.0.0",
"style-loader": "^3.3.4",
"style-resources-loader": "^1.5.0",
"thread-loader": "^3.0.4",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^4.9.5",
"typescript-plugin-css-modules": "^5.0.2",
"uglify-js": "^3.17.4",
"webpack": "^5.0.0",
"webpack-chain": "^6.5.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.0.0"
},
"dependencies": {
"compose-function": "^3.0.3",
"core-js": "^3.35.1",
"lodash": "^4.17.21",
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"engines": {
"node": ">= 14.15.0"
}
}