-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.25 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.25 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "mere-typescript",
"version": "1.0.0",
"private": true,
"dependencies": {
"@hookform/error-message": "^2.0.1",
"@hookform/resolvers": "^3.3.1",
"axios": "^1.5.1",
"browser": "^0.2.6",
"isomorphic-dompurify": "^1.9.0",
"process": "^0.11.10",
"qs": "^6.11.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.45.4",
"react-kakao-maps-sdk": "^1.1.21",
"react-router-dom": "^6.16.0",
"react-router-typesafe": "^1.4.4",
"react-scripts": "^5.0.1",
"react-spinners": "^0.13.8",
"react-use": "^17.4.0",
"use-timer": "^2.0.1",
"uuid": "^9.0.1",
"yup": "^1.3.0",
"zustand": "^4.4.3"
},
"scripts": {
"dev": "npx webpack serve --config config/webpack.dev.ts",
"build:dev": "npx webpack --config config/webpack.dev.ts",
"build:prod": "npx webpack --config config/webpack.prod.ts"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.19.0",
"@babel/eslint-parser": "^7.21.3",
"@babel/preset-env": "^7.23.6",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.10",
"@svgr/webpack": "^8.1.0",
"@types/node": "^20.10.4",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@types/react-router-dom": "^5.3.3",
"@types/uuid": "^9.0.7",
"@types/webpack": "^5.28.5",
"@types/webpack-dev-server": "^4.7.2",
"@webpack-cli/generators": "^3.0.1",
"babel-loader": "^9.1.2",
"core-js": "^3.34.0",
"cross-env": "^7.0.3",
"css-loader": "^6.7.3",
"css-minimizer-webpack-plugin": "^5.0.1",
"dotenv": "^16.0.3",
"eslint": "^8.38.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.8.0",
"eslint-import-resolver-babel-module": "^5.3.2",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.8.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.0",
"favicons-webpack-plugin": "^6.0.1",
"firebase-tools": "^12.6.2",
"html-webpack-plugin": "^5.5.4",
"image-minimizer-webpack-plugin": "^3.8.2",
"imagemin": "^8.0.1",
"imagemin-gifsicle": "^7.0.0",
"imagemin-jpegtran": "^7.0.0",
"imagemin-optipng": "^8.0.0",
"imagemin-svgo": "^10.0.1",
"mini-css-extract-plugin": "^2.7.6",
"prettier": "^2.8.4",
"react-refresh": "^0.14.0",
"sass": "^1.67.0",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.1",
"ts-node": "^10.9.2",
"tsconfig-paths-webpack-plugin": "^4.1.0",
"typescript": "^5.3.3",
"webpack": "^5.89.0",
"webpack-bundle-analyzer": "^4.10.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"webpack-merge": "^5.10.0"
},
"overrides": {
"typescript": "^5.3.3"
},
"description": "My webpack project"
}