-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
104 lines (104 loc) · 3.1 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
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
{
"name": "team9-podo-fe",
"version": "1.0.0",
"description": "### 팀원 소개 * FE 강준우 * FE 한승연",
"main": "webpack.config.js",
"scripts": {
"test": "jest",
"build": "webpack --config webpack.prod.js --env DEV=false",
"start": "webpack-dev-server --hot --config webpack.dev.js --env DEV=true",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"admin": "webpack-dev-server --hot --config webpack.config.js",
"adminBuild": "webpack --config webpack.config.js --env DEV=false"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.24.9",
"@babel/preset-env": "^7.24.8",
"@babel/preset-react": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@chromatic-com/storybook": "^1.6.1",
"@eslint/js": "^9.7.0",
"@storybook/addon-essentials": "^8.2.6",
"@storybook/addon-interactions": "^8.2.6",
"@storybook/addon-links": "^8.2.6",
"@storybook/addon-onboarding": "^8.2.6",
"@storybook/addon-styling-webpack": "^1.0.0",
"@storybook/addon-webpack5-compiler-swc": "^1.0.5",
"@storybook/blocks": "^8.2.6",
"@storybook/react": "^8.2.6",
"@storybook/react-webpack5": "^8.2.6",
"@storybook/test": "^8.2.6",
"@testing-library/dom": "^10.4.0",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/jest": "^29.5.12",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react-router": "^5.1.20",
"@types/react-router-dom": "^5.3.3",
"autoprefixer": "^10.4.19",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
"css-loader": "^7.1.2",
"eslint": "9.x",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-storybook": "^0.8.0",
"file-loader": "^6.2.0",
"globals": "^15.8.0",
"html-loader": "^5.0.0",
"html-webpack-plugin": "^5.6.0",
"image-minimizer-webpack-plugin": "^4.1.0",
"imagemin": "^9.0.0",
"imagemin-webp": "^8.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"mini-css-extract-plugin": "^2.9.0",
"msw": "^2.3.4",
"msw-storybook-addon": "^2.0.3",
"postcss": "^8.4.39",
"postcss-loader": "^8.1.1",
"prettier": "3.3.3",
"prettier-plugin-tailwindcss": "^0.6.5",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sharp": "^0.33.5",
"storybook": "^8.2.6",
"style-loader": "^4.0.0",
"tailwindcss": "^3.4.6",
"ts-jest": "^29.2.4",
"ts-loader": "^9.5.1",
"typescript": "^5.5.4",
"undici": "^6.19.4",
"url-loader": "^4.1.1",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.0.4"
},
"dependencies": {
"@types/js-cookie": "^3.0.6",
"dotenv": "^16.4.5",
"echarts": "^5.5.1",
"echarts-wordcloud": "^2.1.0",
"js-cookie": "^3.0.5",
"react-confetti": "^6.1.0",
"react-error-boundary": "^4.0.13",
"react-router-dom": "^6.26.0"
},
"eslintConfig": {
"extends": [
"plugin:storybook/recommended"
]
},
"msw": {
"workerDirectory": [
"public"
]
},
"sideEffects": [
"*.css"
]
}