-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.96 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.96 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
{
"name": "crypto-app",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"prestart": "rm -rf .next",
"start": "next start",
"lint": "next lint",
"prepare": "husky",
"clean": "rm -rf node_modules",
"reinstall": "npm run clean && npm install",
"rebuild": "npm run clean && npm install && npm run build",
"test": "echo \"No tests specified\" && exit 0"
},
"dependencies": {
"@clerk/nextjs": "^6.18.5",
"@hookform/resolvers": "^3.10.0",
"@reduxjs/toolkit": "^2.2.3",
"axios": "^1.6.8",
"chart.js": "^4.4.7",
"chartjs-adapter-date-fns": "^3.0.0",
"chartjs-plugin-annotation": "^3.0.1",
"chartjs-plugin-crosshair": "^2.0.0",
"classnames": "^2.5.1",
"convex": "^1.24.1",
"framer-motion": "^11.2.4",
"next": "^14.2.28",
"next-themes": "^0.3.0",
"react": "^18.3.1",
"react-chartjs-2": "^5.3.0",
"react-dom": "^18.3.1",
"react-hook-form": "^7.56.4",
"react-icons": "^5.2.0",
"react-redux": "^9.1.1",
"react-slick": "^0.30.2",
"redux-logger": "^3.0.6",
"redux-persist": "^6.0.0",
"semantic-ui-react": "^2.1.5",
"slick-carousel": "^1.8.1",
"styled-components": "^6.1.9",
"uuid": "^10.0.0",
"zod": "^3.25.46"
},
"lint-staged": {
"app/**/*.{js,ts,jsx,tsx}": "eslint --fix"
},
"devDependencies": {
"@playwright/test": "^1.54.1",
"@stylistic/eslint-plugin": "^1.8.0",
"@types/chartjs-plugin-crosshair": "^1.1.4",
"@types/node": "^20.17.43",
"@types/react": "18.3.18",
"@types/react-dom": "^18",
"@types/react-slick": "^0.23.13",
"@types/uuid": "^10.0.0",
"eslint": "^8",
"eslint-config-next": "14.2.1",
"eslint-plugin-react": "^7.34.1",
"husky": "^9.1.7",
"lint-staged": "^16.0.0",
"postcss": "^8",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"rimraf": "^6.0.1",
"tailwindcss": "^3.4.1",
"typescript": "^5.8.3"
}
}