-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.07 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.07 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
81
{
"name": "hawkins-fraud-detection-system",
"version": "0.1.0",
"private": true,
"rocketCritical": {
"dependencies": [
"next",
"react",
"react-dom",
"@dhiwise/component-tagger",
"@tailwindcss/typography",
"recharts"
],
"devDependencies": [
"typescript",
"@types/node",
"@types/react",
"@types/react-dom",
"@typescript-eslint/eslint-plugin",
"@typescript-eslint/parser",
"eslint-config-next",
"tailwindcss",
"autoprefixer",
"postcss",
"eslint",
"prettier",
"@netlify/plugin-nextjs"
],
"scripts": [
"dev",
"build",
"start",
"lint",
"lint:fix",
"format",
"serve",
"type-check"
],
"warning": "🚨 CRITICAL: DO NOT REMOVE OR MODIFY ABOVE DEPENDENCIES - Required for Next.js 15 TypeScript app functionality"
},
"scripts": {
"dev": "next dev -p 4028",
"build": "next build",
"start": "next dev -p 4028",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,css,md,json}\"",
"serve": "next start",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@dhiwise/component-tagger": "^1.0.10",
"@heroicons/react": "^2.2.0",
"@supabase/supabase-js": "^2.86.2",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/typography": "^0.5.16",
"next": "14.2.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"recharts": "^2.15.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@netlify/plugin-nextjs": "^5.11.1",
"@types/node": "^20",
"@types/react": "18.2.45",
"@types/react-dom": "18.2.0",
"@typescript-eslint/eslint-plugin": "^8.29.0",
"@typescript-eslint/parser": "^8.29.0",
"autoprefixer": "10.4.2",
"eslint": "^9",
"eslint-config-next": "^15.2.4",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.6",
"postcss": "8.4.8",
"prettier": "^3.5.3",
"tailwindcss": "3.4.6",
"tailwindcss-animate": "^1.0.7",
"typescript": "^5"
}
}