-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
55 lines (55 loc) · 1.43 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
{
"name": "audiobox",
"private": true,
"version": "0.0.0",
"scripts": {
"start": "vite",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"lint": "eslint . --fix",
"check": "prettier -c .",
"format": "prettier -w .",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"dependencies": {
"@reduxjs/toolkit": "^1.8.1",
"axios": "^0.26.1",
"html-to-text": "^8.2.0",
"lottie-web": "^5.9.2",
"moment": "^2.29.3",
"random-bytes-js": "^1.0.0",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-helmet-async": "^1.3.0",
"react-icons": "^4.3.1",
"react-redux": "^7.2.8",
"react-router-dom": "^6.3.0",
"react-toastify": "^8.2.0",
"swiper": "^8.1.1",
"swr": "^1.3.0"
},
"devDependencies": {
"@tailwindcss/line-clamp": "^0.3.1",
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.1.1",
"@testing-library/user-event": "^14.1.1",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.19.0",
"@typescript-eslint/parser": "^5.19.0",
"@vitejs/plugin-react": "^1.3.0",
"autoprefixer": "^10.4.4",
"eslint": "^8.12.0",
"eslint-plugin-react": "^7.29.4",
"msw": "^0.39.2",
"postcss": "^8.4.12",
"prettier": "^2.6.2",
"tailwindcss": "^3.0.24",
"typescript": "^4.6.3",
"vite": "^2.9.2",
"vite-tsconfig-paths": "^3.4.1",
"vitest": "^0.9.3"
}
}