-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.74 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
{
"name": "4mc",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"dependencies": {
"@toast-ui/editor": "^3.2.2",
"@toast-ui/editor-plugin-code-syntax-highlight": "^3.1.0",
"@toast-ui/editor-plugin-color-syntax": "^3.1.0",
"@toast-ui/react-editor": "^3.2.3",
"@types/node": "^18.15.11",
"axios": "^1.4.0",
"react": "latest",
"react-circular-progressbar": "^2.1.0",
"react-cookie": "^4.1.1",
"react-dom": "latest",
"react-hook-form": "^7.45.2",
"react-intersection-observer": "^9.5.2",
"react-is": "^18.2.0",
"react-markdown": "^8.0.7",
"react-query": "^3.39.3",
"react-router-dom": "^6.10.0",
"react-toastify": "^9.1.3",
"recoil": "^0.7.7",
"remark-gfm": "^3.0.1",
"styled-components": "^5.3.9",
"styled-reset": "^4.4.6"
},
"devDependencies": {
"@types/eslint": "^8",
"@types/react": "latest",
"@types/react-dom": "latest",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@vitejs/plugin-react": "^3.1.0",
"esbuild": "npm:0.18.20",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "latest",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "latest",
"msw": "^1.2.2",
"typescript": "latest",
"vite": "^4.3.9"
},
"packageManager": "yarn@3.5.0",
"eslintConfig": {
"extends": [
"react-app",
"airbnb",
"prettier"
]
},
"include": [
"**/*.ts",
"**/*.tsx"
],
"msw": {
"workerDirectory": "public"
}
}