-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.29 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.29 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
{
"name": "newcord",
"author": "Kovengers",
"license": "MIT",
"version": "1.0.0",
"private": false,
"scripts": {
"dev": "vite",
"start": "vite preview --host",
"build": "vite build",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "eslint --fix \"src/**/*.{js,jsx,ts,tsx}\"",
"prettier": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"",
"clean": "rm -rf node_modules .next out dist build",
"re:start": "npm run clean && npm install && npm run dev",
"re:build": "npm run clean && npm install && npm run build",
"re:build-npm": "npm run clean && npm install && npm run build",
"dev:host": "vite --host",
"vite:start": "vite",
"vite:build": "vite build"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@faker-js/faker": "^8.1.0",
"@iconify/react": "^4.1.1",
"@mui/icons-material": "^5.15.15",
"@mui/lab": "^5.0.0-alpha.147",
"@mui/material": "^5.14.12",
"@stomp/stompjs": "^7.0.0",
"@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",
"apexcharts": "^3.43.0",
"axios": "^1.7.2",
"bootstrap": "^5.3.3",
"date-fns": "^2.30.0",
"dotenv": "^16.4.5",
"history": "^5.3.0",
"install": "^0.13.0",
"js-cookie": "^3.0.5",
"lodash": "^4.17.21",
"npm": "^10.5.2",
"numeral": "^2.0.6",
"prismjs": "^1.29.0",
"prop-types": "^15.8.1",
"react": "^18.3.1",
"react-apexcharts": "^1.4.1",
"react-cookie": "^7.1.4",
"react-dom": "^18.3.1",
"react-helmet-async": "^1.3.0",
"react-hook-form": "^7.47.0",
"react-intersection-observer": "^9.10.2",
"react-kakao-maps-sdk": "^1.1.26",
"react-markdown": "^9.0.1",
"react-router-dom": "^6.23.1",
"react-simple-image-slider": "^2.4.1",
"react-slick": "^0.30.2",
"simplebar-react": "^3.2.4",
"slick-carousel": "^1.8.1",
"styled-components": "^6.1.8",
"toast-ui-editor": "^1.0.0",
"vite-plugin-html": "^3.2.2",
"web-vitals": "^4.0.1",
"zustand": "^4.5.0"
},
"devDependencies": {
"@vitejs/plugin-react-swc": "^3.4.0",
"prettier": "^3.0.3",
"vite": "^4.5.3",
"vite-plugin-checker": "^0.6.2",
"vite-plugin-html-env": "^1.2.8"
}
}