-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.27 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.27 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
{
"name": "react-basics",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"lint": "eslint . --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"test": "jest --watchAll"
},
"dependencies": {
"@babel/runtime": "^7.22.6",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@storybook/react": "^8.6.12",
"@storybook/testing-library": "^0.2.1",
"@tanstack/react-query": "^4.29.19",
"axios": "^1.4.0",
"emotion-normalize": "^11.0.1",
"history": "^5.3.0",
"immer": "^10.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-query": "^3.39.3",
"react-router-dom": "^6.14.1",
"recoil": "^0.7.7",
"vite-tsconfig-paths": "^4.2.0"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@eslint/js": "^9.23.0",
"@testing-library/dom": "^9.3.4",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^14.3.1",
"@testing-library/user-event": "^14.5.1",
"@types/jest": "^29.5.14",
"@types/react": "^18.3.20",
"@types/react-dom": "^18.3.6",
"@types/web": "^0.0.217",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-react": "^4.0.0",
"eslint": "^8.38.0",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-plugin-react": "^7.37.4",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.3.4",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"nock": "^13.3.8",
"prettier": "^3.5.3",
"start-server-and-test": "^2.0.2",
"ts-jest": "^29.3.2",
"typescript": "5.5",
"vite": "^4.3.9"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jest-environment-jsdom",
"globals": {
"ts-jest": {
"tsconfig": "tsconfig.jest.json"
}
},
"testEnvironmentOptions": {
"url": "https://wanted.byeongjinkang.com"
},
"moduleNameMapper": {
"\\.css$": "identity-obj-proxy"
}
},
"packageManager": "yarn@4.0.0"
}