-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.28 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.28 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
80
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"prepare": "husky",
"test": "jest --watch",
"cypress": "cypress open",
"lint:fix": "next lint --fix",
"lint:strict": "next lint 'src/**/*.{js,jsx,ts,tsx}'",
"prettier": "prettier --write 'src/**/*.{tsx,css,scss}'"
},
"dependencies": {
"@sentry/nextjs": "^8.34.0",
"@stomp/stompjs": "^7.0.0",
"@tanstack/query-async-storage-persister": "^5.62.9",
"@tanstack/react-query": "^5.51.11",
"@tanstack/react-query-persist-client": "^5.62.10",
"axios": "^1.7.2",
"draft-js": "^0.11.7",
"ffmpeg-static": "^5.2.0",
"firebase": "^10.14.0",
"fluent-ffmpeg": "^2.1.3",
"framer-motion": "^11.3.24",
"html-react-parser": "^5.1.12",
"husky": "^9.1.4",
"next": "14.2.5",
"puppeteer": "^23.0.2",
"react": "^18",
"react-datepicker": "^7.3.0",
"react-dom": "^18",
"react-hook-form": "^7.52.1",
"react-intersection-observer": "^9.13.0",
"react-quill": "^2.0.0",
"sass": "^1.77.8",
"sharp": "^0.33.5",
"swiper": "^11.1.14",
"ts-node": "^10.9.2",
"zustand": "^4.5.4"
},
"devDependencies": {
"@netlify/plugin-nextjs": "^5.6.0",
"@tanstack/react-query-devtools": "^5.51.11",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/fluent-ffmpeg": "^2.1.27",
"@types/node": "^20",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"cypress": "^13.14.2",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.5",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-react": "^7.35.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.7",
"netlify-cli": "^17.37.2",
"prettier": "^3.3.3",
"typescript": "^5"
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx}": [
"prettier --write",
"next lint --fix"
],
"src/**/*.{css,scss}": [
"prettier --write"
]
}
}