-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.42 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.42 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
{
"name": "tina-self-hosted-demo",
"version": "0.6.2",
"private": true,
"scripts": {
"doc": "cd docs && retype start",
"dev": "tinacms dev -c \"next dev\"",
"dev:prod": "TINA_PUBLIC_IS_LOCAL=false tinacms dev -c \"next dev\"",
"build": "node scripts/generate-api-data.mjs && node scripts/generate-openapi-spec.mjs && TINA_PUBLIC_IS_LOCAL=false tinacms build --partial-reindex && next build && npx pagefind --site .next/server/app --output-path public/pagefind",
"build-local": "TINA_PUBLIC_IS_LOCAL=true ./scripts/build-local.sh",
"start": "TINA_PUBLIC_IS_LOCAL=true tinacms build && next start",
"serve-local": "TINA_PUBLIC_IS_LOCAL=true next start",
"lint": "pnpm lint:next && pnpm lint:md",
"lint:next": "next lint",
"lint:md": "eslint . -c .md.eslintrc --ext .md,.mdx",
"check-types": "tsc --noEmit",
"validate:mdx": "pnpm remark ./**/*.mdx",
"prettier": "prettier . --write",
"docker:up": "docker compose -f .local_mongodb/docker-compose.yml up -d",
"docker:down": "docker compose -f .local_mongodb/docker-compose.yml down",
"sync-upstream": "./scripts/sync-upstream.sh",
"clean": "rm -rf .next && rm -rf tina/__generated__",
"changeset": "changeset",
"version": "changeset version",
"release": "changeset version && git add -A && git commit -m 'chore: release'"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@iconify/react": "5.1.0",
"@types/node": "^22.10.2",
"@types/react": "18.3.11",
"@types/react-dom": "18.3.0",
"autoprefixer": "10.4.20",
"dotenv": "^17.2.3",
"eslint": "^8.41.0",
"eslint-config-next": "^14.2.35",
"eslint-plugin-mdx": "^3.6.2",
"mongodb": "^7.0.0",
"pagefind": "^1.4.0",
"postcss": "8.4.49",
"prettier": "3.4.2",
"prettier-plugin-tailwindcss": "0.6.9",
"remark": "^15.0.1",
"remark-cli": "^12.0.1",
"remark-frontmatter": "^5.0.0",
"remark-lint-frontmatter-schema": "^3.15.4",
"tailwindcss": "3.4.17",
"unist-util-visit": "^5.0.0"
},
"dependencies": {
"@tailwindcss/forms": "0.5.9",
"@tinacms/cli": "1.12.6",
"@tinacms/datalayer": "1.4.3",
"clsx": "2.1.1",
"js-yaml": "^4.1.0",
"mongodb-level": "0.0.4",
"next": "14.2.35",
"next-auth": "4.24.13",
"next-swagger-doc": "^0.4.1",
"node-fetch": "3.3.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-syntax-highlighter": "^15.6.1",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-react": "^5.26.0",
"tailwind-merge": "2.5.5",
"tinacms": "2.10.1",
"tinacms-authjs": "^5.0.9",
"tinacms-gitprovider-github": "2.0.19",
"typescript": "5.9.3",
"upstash-redis-level": "1.1.1",
"zod": "^4.3.6"
},
"prettier": {
"printWidth": 80,
"semi": true,
"bracketSameLine": true,
"trailingComma": "es5",
"tabWidth": 2,
"singleQuote": true,
"bracketSpacing": true,
"arrowParens": "always",
"singleAttributePerLine": true,
"plugins": [
"prettier-plugin-tailwindcss"
]
},
"packageManager": "pnpm@10.7.1+sha512.2d92c86b7928dc8284f53494fb4201f983da65f0fb4f0d40baafa5cf628fa31dae3e5968f12466f17df7e97310e30f343a648baea1b9b350685dafafffdf5808",
"peerDependencies": {
"mongodb": "^4.12.1"
},
"pnpm": {
"overrides": {
"nanoid": "^3.3.8",
"react-dnd": "14.0.5",
"react-dnd-html5-backend": "14.1.0"
}
},
"description": "null",
"repository": null,
"homepage": "null",
"bugs": null
}