-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.58 KB
/
Copy pathpackage.json
File metadata and controls
121 lines (121 loc) · 3.58 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
115
116
117
118
119
120
121
{
"name": "cms-nova",
"version": "1.0.0",
"description": "Modern headless CMS with Notion-style design, visual template builder, and complete user management",
"private": true,
"type": "module",
"bin": {
"create-cms-nova": "./cli/create-cms-nova.js"
},
"scripts": {
"build": "prisma generate && next build",
"dev": "next dev --turbo",
"start": "next start",
"lint": "npx @biomejs/biome check .",
"lint:fix": "npx @biomejs/biome check --write .",
"format": "npx @biomejs/biome format .",
"format:write": "npx @biomejs/biome format --write .",
"type-check": "tsc --noEmit",
"security:check-api": "node scripts/security/check-api-policy.js",
"generate": "prisma generate",
"migrate": "prisma migrate dev",
"db:push": "prisma db push",
"db:studio": "prisma studio",
"nova:upgrade": "node cli/create-cms-nova.js upgrade",
"nova:publish": "cd cli && npm publish"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.940.0",
"@aws-sdk/s3-request-presigner": "^3.1008.0",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@hookform/resolvers": "^5.2.2",
"@prisma/adapter-pg": "^7.5.0",
"@prisma/client": "^7.5.0",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-avatar": "^1.1.11",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-toast": "^1.2.15",
"@tailwindcss/postcss": "^4.2.1",
"@types/lodash": "^4.17.21",
"bcryptjs": "^3.0.3",
"better-auth": "^1.4.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"date-fns": "^4.1.0",
"dotenv": "^17.3.1",
"geist": "^1.7.0",
"lodash": "^4.17.21",
"lucide-react": "^0.577.0",
"next": "^16.1.6",
"next-intl": "^4.6.1",
"nodemailer": "^7.0.11",
"pg": "^8.16.3",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-hook-form": "^7.66.1",
"slugify": "^1.6.6",
"tailwind-merge": "^3.4.0",
"tailwindcss-animate": "^1.0.7",
"zod": "^4.3.6"
},
"devDependencies": {
"@biomejs/biome": "^2.3.8",
"@swc/helpers": "0.5.19",
"@types/bcryptjs": "^3.0.0",
"@types/node": "^24.12.0",
"@types/nodemailer": "^7.0.4",
"@types/pg": "8.11.11",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.4.27",
"baseline-browser-mapping": "^2.8.32",
"postcss": "^8.5.8",
"prisma": "^7.5.0",
"tailwindcss": "^4.1.17",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"keywords": [
"cms",
"headless-cms",
"admin-panel",
"content-management",
"react",
"nextjs",
"typescript",
"prisma",
"better-auth",
"notion-style",
"visual-builder",
"template-builder",
"drag-drop",
"aws-s3",
"user-management"
],
"author": "Daniel CA <tu-email@gmail.com> (https://github.com/danielcadev)",
"license": "MIT",
"engines": {
"node": ">=20.19.0",
"npm": ">=10.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/danielcadev/cms-nova-template.git"
},
"homepage": "https://github.com/danielcadev/cms-nova-template#readme",
"bugs": {
"url": "https://github.com/danielcadev/cms-nova-template/issues"
}
}