-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
112 lines (112 loc) · 3.27 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "commune-sphere",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"prepare": "husky",
"lint": "eslint",
"lint:fix": "eslint --fix",
"format:check": "prettier . --check",
"format:fix": "prettier './**/*.{js,ts,tsx,css,html}' --fix",
"postinstall": "prisma generate"
},
"lint-staged": {
"*.ts": [
"npm run lint:fix",
"npm run format:fix"
],
"*.tsx": [
"npm run lint:fix",
"npm run format:fix"
],
"*.js": [
"npm run lint:fix",
"npm run format:fix"
]
},
"dependencies": {
"@auth/prisma-adapter": "^1.3.3",
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/modifiers": "^7.0.0",
"@dnd-kit/sortable": "^8.0.0",
"@edgestore/react": "^0.2.2",
"@edgestore/server": "^0.2.2",
"@faker-js/faker": "^9.0.3",
"@hookform/resolvers": "^3.3.4",
"@prisma/client": "^5.9.1",
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-avatar": "^1.0.4",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-popover": "^1.0.7",
"@radix-ui/react-progress": "^1.1.0",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.1.0",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tabs": "^1.0.4",
"@radix-ui/react-tooltip": "^1.1.2",
"@reduxjs/toolkit": "^2.2.2",
"@tanstack/react-table": "^8.13.2",
"chart.js": "^2.9.4",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"cmdk": "^0.2.1",
"embla-carousel-react": "^8.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-tailwindcss": "^3.14.3",
"focus-trap-react": "^10.3.0",
"framer-motion": "^11.0.8",
"lucide-react": "^0.451.0",
"next": "14.1.0",
"next-auth": "^5.0.0-beta.9",
"next-themes": "^0.2.1",
"react": "^18",
"react-dom": "^18",
"react-dropzone": "^14.2.3",
"react-hook-form": "^7.50.1",
"react-papaparse": "^4.4.0",
"react-redux": "^9.1.0",
"react-resizable-panels": "^2.0.13",
"recharts": "^2.13.3",
"sharp": "^0.33.5",
"sonner": "^1.4.3",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"uuid": "^10.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/js": "^9.10.0",
"@types/chart.js": "^2.9.41",
"@types/eslint__js": "^8.42.3",
"@types/eslint-config-prettier": "^6.11.3",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"autoprefixer": "^10.0.1",
"eslint": "^8.57.1",
"eslint-config-next": "14.1.0",
"eslint-config-prettier": "^9.1.0",
"faker-js": "^1.0.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"postcss": "^8",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.2.1",
"prisma": "^5.9.1",
"tailwindcss": "^3.3.0",
"typescript": "^5.3.3",
"typescript-eslint": "^8.6.0"
}
}