-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.3 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.3 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
{
"name": "moklet.org",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "prisma generate && next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"prettier": "prettier --write .",
"prepare": "husky install",
"prisma": "dotenv -e .env.local prisma migrate dev",
"prisma:push": "dotenv -e .env.local prisma db push",
"prisma:studio": "dotenv -e .env.local prisma studio"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@next/third-parties": "^14.2.5",
"@prisma/client": "^5.22.0",
"@types/bcrypt": "^5.0.2",
"@uiw/react-md-editor": "^4.0.4",
"bcrypt": "^5.1.1",
"class-variance-authority": "^0.7.0",
"clipboard": "^2.0.11",
"cloudinary": "^2.2.0",
"clsx": "^2.1.1",
"dotenv-cli": "^8.0.0",
"echarts": "^5.5.0",
"echarts-for-react": "^3.0.2",
"next": "^14.2.22",
"next-auth": "^4.24.7",
"next-nprogress-bar": "^2.3.11",
"nextjs-toploader": "^1.6.12",
"qr-code-styling": "^1.9.1",
"react": "^18.3.1",
"react-data-table-component": "^7.6.2",
"react-dom": "^18.3.1",
"react-icons": "^5.2.1",
"react-intersection-observer": "^9.13.0",
"react-select": "^5.8.0",
"recharts": "^2.15.1",
"rehype-highlight": "^7.0.2",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.1",
"remark-rehype": "^11.1.1",
"schema-dts": "^1.1.2",
"sonner": "^1.4.41",
"styled-components": "^6.1.8",
"tailwind-merge": "^2.3.0",
"write-excel-file": "^2.0.3"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.16",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.5",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.34.2",
"eslint-plugin-react-hooks": "^4.6.2",
"husky": "^9.0.11",
"postcss": "^8",
"prettier": "3.2.5",
"prettier-plugin-tailwindcss": "^0.5.13",
"prisma": "^5.22.0",
"tailwindcss": "^3.4.3",
"typescript": "^5"
}
}