-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.22 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 2.22 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
{
"name": "next-admin",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "turbo run start",
"start:examples": "dotenv -e ./packages/database/prisma/.env turbo run start -- --filter=example --filter=./apps/example-*",
"build": "turbo run build",
"build:examples": "turbo run build --filter=example --filter=./apps/example-*",
"build:next-admin": "turbo run build --filter=@premieroctet/next-admin",
"build:packages": "turbo run build --filter=@premieroctet/next-admin --filter=@premieroctet/next-admin-cli --filter=@premieroctet/next-admin-generator-prisma --filter=@premieroctet/next-admin-json-schema",
"setup:packages": "turbo run build --filter=@premieroctet/next-admin-cli --filter=@premieroctet/next-admin-generator-prisma --filter=@premieroctet/next-admin-json-schema && pnpm build:next-admin && pnpm build --filter=examples-common",
"dev": "dotenv -e ./packages/database/prisma/.env turbo run dev",
"dev:docs": "turbo run dev --filter=docs",
"lint": "turbo run lint",
"test": "turbo run test",
"test:e2e": "dotenv turbo test:e2e",
"typecheck": "turbo run typecheck",
"database": "dotenv turbo run database",
"reset-database": "dotenv turbo run reset-database",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"publish-packages": "pnpm build:packages && changeset publish",
"changeset-version": "(changeset version) && cp packages/next-admin/CHANGELOG.md apps/docs/pages/changelog/index.md && pnpm install",
"clean": "turbo run clean"
},
"devDependencies": {
"changeset": "^0.2.6",
"dotenv-cli": "7.2.1",
"eslint-config-custom": "workspace:*",
"playwright": "^1.48.2",
"prettier": "latest",
"turbo": "latest"
},
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"@changesets/cli": "^2.29.5",
"prettier-plugin-tailwindcss": "^0.6.6"
},
"packageManager": "pnpm@9.12.3",
"repository": {
"type": "git",
"url": "https://github.com/premieroctet/next-admin.git"
},
"homepage": "https://next-admin.js.org",
"resolutions": {
"next": "15.1.11",
"react": "19.0.3",
"react-dom": "19.0.3"
},
"pnpm": {
"patchedDependencies": {
"next-connect": "patches/next-connect.patch"
}
}
}