-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
105 lines (105 loc) · 2.87 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
{
"name": "bmm-next",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "tsx scripts/db-init.zx && next dev",
"build": "next build",
"start": "tsx scripts/db-init.zx -P && next start",
"lint": "next lint",
"test": "vitest",
"dk": "drizzle-kit",
"studio": "drizzle-kit studio",
"db:test": "tsx scripts/db-test.zx",
"db:migrate": "tsx scripts/db-migration.zx",
"db:test-p": "tsx scripts/db-test.zx --production",
"db:migrate-p": "tsx scripts/db-migration.zx --production"
},
"engines": {
"node": ">=18.18.0"
},
"dependencies": {
"@ant-design/nextjs-registry": "^1.0.1",
"@auth/drizzle-adapter": "^1.4.2",
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@iconify-json/hugeicons": "^1.2.0",
"@iconify-json/mdi": "^1.1.68",
"@iconify-json/tabler": "^1.1.120",
"@iconify/react": "^5.0.2",
"@next/env": "14.2.17",
"@next/third-parties": "14.2.17",
"@heroui/react": "2.6.14",
"@types/color": "^3.0.6",
"@types/lodash": "^4.17.6",
"@types/node": "^20.11.24",
"@types/react": "^18.2.61",
"@types/react-dom": "^18.2.19",
"ahooks": "^3.8.0",
"antd": "^5.20.6",
"autoprefixer": "^10.4.18",
"cheerio": "1.0.0",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"code-inspector-plugin": "^0.15.0",
"color": "^4.2.3",
"dayjs": "^1.11.11",
"dotenv": "^16.4.5",
"drizzle-orm": "0.32.0",
"drizzle-zod": "^0.5.1",
"eslint": "^8.57.0",
"eslint-config-next": "14.1.1",
"framer-motion": "^11.5.4",
"i18next": "^23.15.1",
"iconv-lite": "0.6.3",
"lodash": "^4.17.21",
"lucide-react": "^0.441.0",
"next": "14.2.17",
"next-auth": "5.0.0-beta.20",
"next-themes": "0.3.0",
"pinyin-pro": "^3.24.0",
"postcss": "^8.4.41",
"postcss-nesting": "^13.0.0",
"postgres": "3.4.4",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.6",
"rc-select": "^14.15.0",
"react": "^18.2.0",
"react-colorful": "^5.6.1",
"react-dom": "^18.2.0",
"react-hot-toast": "^2.4.1",
"tailwind-merge": "^2.5.2",
"tailwindcss": "^3.4.10",
"tailwindcss-animate": "^1.0.7",
"typescript": "5.3.3",
"uvcanvas": "^0.2.1",
"zod": "^3.22.4",
"zod-i18n-map": "^2.27.0",
"zod-validation-error": "^3.0.3"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@iconify/tailwind": "^1.1.2",
"drizzle-kit": "0.24.0",
"tsx": "4.19.0",
"vite": "^5.4.11",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^2.1.4",
"zx": "8.1.5"
},
"prettier": {
"printWidth": 100,
"tabWidth": 2,
"useTabs": false,
"semi": false,
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": true,
"arrowParens": "always",
"plugins": [
"prettier-plugin-tailwindcss"
]
}
}