-
Notifications
You must be signed in to change notification settings - Fork 106
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.33 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.33 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
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
113
114
{
"name": "bmm",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "tsx scripts/db-init.mjs && next dev",
"build": "tsx scripts/db-init.mjs -P && next build",
"start": "tsx scripts/db-init.mjs -P && next start",
"lint": "eslint .",
"test": "vitest",
"studio": "drizzle-kit studio",
"检测数据库能否连接": "⬇️",
"db:test": "tsx scripts/db-test.mjs",
"执行数据库初始化/迁移": "⬇️",
"db:migrate": "tsx scripts/db-migration.mjs",
"根据项目中的 schema,更新数据库(忽略 migrations,可能会导致数据丢失)": "⬇️",
"db:push": "tsx scripts/db-push.mjs",
"user:list": "tsx scripts/list-users.mjs",
"user:reset-password": "tsx scripts/reset-user-password.mjs",
"以上这些命令行均允许加上 -P 或 --production,以加载正式环境变量,如 pnpm db:test -P": ""
},
"packageManager": "pnpm@10.24.0",
"engines": {
"node": ">=24.0.0"
},
"dependencies": {
"@ai-sdk/openai-compatible": "^2.0.4",
"@ant-design/nextjs-registry": "1.3.0",
"@auth/core": "0.40.0",
"@auth/drizzle-adapter": "1.10.0",
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@heroui/react": "2.8.8",
"@libsql/client": "0.15.1",
"@next/env": "16.2.3",
"@next/third-parties": "16.2.3",
"@tailwindcss/postcss": "^4.1.17",
"ahooks": "^3.8.4",
"ai": "^6.0.21",
"antd": "6.1.0",
"cheerio": "1.0.0",
"color": "^4.2.3",
"dayjs": "^1.11.13",
"dotenv": "^16.4.5",
"drizzle-kit": "0.31.5",
"drizzle-orm": "0.44.5",
"drizzle-zod": "0.8.3",
"framer-motion": "^12.23.26",
"i18next": "^24.2.3",
"iconv-lite": "0.6.3",
"lodash": "^4.17.21",
"motion": "^12.23.26",
"nanoid": "5.1.6",
"next": "16.2.3",
"next-auth": "5.0.0-beta.29",
"next-themes": "0.4.6",
"pinyin-pro": "^3.24.2",
"postgres": "3.4.5",
"rc-select": "^14.16.8",
"react": "^19.2.5",
"react-colorful": "^5.6.1",
"react-dom": "^19.2.5",
"sharp": "^0.34.5",
"tsx": "4.19.3",
"uvcanvas": "^0.2.1",
"zod": " 4.1.11 ",
"zod-validation-error": "4.0.2",
"zx": "8.1.5"
},
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@iconify-json/hugeicons": "^1.2.0",
"@iconify-json/mdi": "^1.1.68",
"@iconify-json/tabler": "^1.1.120",
"@iconify/react": "^5.0.2",
"@iconify/tailwind": "^1.1.2",
"@types/color": "^3.0.6",
"@types/lodash": "^4.17.7",
"@types/node": "^20.16.1",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.4.21",
"code-inspector-plugin": "^1.3.0",
"eslint": "^9.39.4",
"eslint-config-next": "16.2.3",
"postcss": "^8.4.41",
"postcss-nesting": "^13.0.0",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "^4.1.17",
"tailwindcss-animate": "^1.0.7",
"tsx": "4.19.3",
"typescript": "6.0.2",
"vite": "^5.4.11",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "3.2.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"
]
}
}