forked from nakjun12/Market
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.8 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
{
"name": "vite-project",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"cypress:open": "cypress open",
"format": "prettier --write \"src/**/*.js\"",
"test": "vitest watch",
"docker:build": "docker-compose build",
"docker:start": "docker-compose up -d",
"docker": "docker-compose build && docker-compose up -d"
},
"dependencies": {
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@heroicons/react": "^2.1.1",
"@tanstack/react-query": "^5.17.9",
"@vitejs/plugin-react": "^4.2.1",
"axios": "^1.6.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-router-dom": "^6.21.1",
"react-spinners": "^0.13.8",
"swiper": "^11.0.5",
"zustand": "^4.4.7"
},
"devDependencies": {
"@emotion/babel-plugin": "^11.11.0",
"@tanstack/eslint-plugin-query": "^5.12.1",
"@testing-library/jest-dom": "^6.1.6",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.4.3",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@vitejs/plugin-react-swc": "^3.5.0",
"autoprefixer": "^10.4.16",
"concurrently": "^8.2.2",
"cypress": "^13.6.2",
"daisyui": "^4.6.0",
"eslint": "^8.55.0",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"eslint-plugin-vitest": "^0.3.20",
"jsdom": "^23.0.1",
"msw": "^2.0.11",
"postcss": "^8.4.32",
"prettier": "^3.1.1",
"tailwindcss": "^3.3.6",
"vite": "^4.0.8",
"vitest": "^1.1.1"
}
}