-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 3.19 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
{
"name": "woowacourse-campus",
"version": "1.0.0",
"main": "index.tsx",
"license": "MIT",
"private": true,
"packageManager": "yarn@4.0.0",
"scripts": {
"build:dev": "cross-env NODE_ENV=development webpack --config webpack.dev.js",
"build:prod": "cross-env NODE_ENV=production webpack --config webpack.prod.js",
"start:dev": "cross-env NODE_ENV=development webpack serve --config webpack.dev.js",
"start:prod": "cross-env NODE_ENV=production webpack serve --config webpack.prod.js",
"start:mocking": "MOCKING_ENV=true yarn start:dev",
"build-storybook": "storybook build",
"storybook": "storybook dev -p 6006",
"test": "jest --watch --no-cache",
"preanalyze": "yarn build:prod",
"analyze": "webpack-bundle-analyzer ./dist/bundle-report.json --default-sizes gzip"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@tanstack/react-query": "^5.29.0",
"axios": "^1.6.8",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-router-dom": "6.22.3",
"zustand": "4.5.2"
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/preset-env": "^7.24.4",
"@babel/preset-react": "^7.24.1",
"@babel/preset-typescript": "^7.24.1",
"@emotion/eslint-plugin": "^11.11.0",
"@jest/globals": "^29.7.0",
"@storybook/addon-essentials": "^8.0.6",
"@storybook/addon-interactions": "^8.0.6",
"@storybook/addon-links": "^8.0.6",
"@storybook/addon-onboarding": "^8.0.6",
"@storybook/blocks": "^8.0.6",
"@storybook/react": "^8.0.6",
"@storybook/react-webpack5": "^8.0.6",
"@storybook/testing-library": "^0.2.2",
"@svgr/webpack": "^8.1.0",
"@tanstack/eslint-plugin-query": "^5.28.11",
"@testing-library/jest-dom": "^6.2.0",
"@testing-library/react": "^14.2.2",
"@types/babel__core": "^7",
"@types/babel__preset-env": "^7",
"@types/gh-pages": "^6",
"@types/jest": "^29.5.11",
"@types/react": "18.2.74",
"@types/react-dom": "18.2.24",
"@types/react-test-renderer": "^18",
"@typescript-eslint/eslint-plugin": "^7.5.0",
"@typescript-eslint/parser": "^7.5.0",
"babel-jest": "^29.7.0",
"copy-webpack-plugin": "12.0.2",
"cross-env": "^7.0.3",
"css-loader": "7.0.0",
"dotenv": "^16.4.5",
"dotenv-webpack": "^8.1.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "9.1.0",
"eslint-import-resolver-typescript": "3.6.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-react": "7.34.1",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-storybook": "0.8.0",
"html-webpack-plugin": "5.6.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"msw": "2.2.13",
"prettier": "3.2.5",
"react-test-renderer": "^18.2.0",
"storybook": "^8.0.6",
"ts-jest": "^29.1.1",
"ts-loader": "9.5.1",
"ts-node": "^10.9.2",
"typescript": "5.4.4",
"undici": "^6.11.1",
"web-streams-polyfill": "^4.0.0",
"webpack": "5.91.0",
"webpack-bundle-analyzer": "4.10.1",
"webpack-cli": "5.1.4",
"webpack-dev-server": "5.0.4",
"webpack-merge": "5.10.0",
"whatwg-fetch": "^3.6.20"
},
"msw": {
"workerDirectory": "public"
}
}