static-cms/packages/docs/package.json
Denys Konovalov cebf4d0a9d
Some checks failed
Build / build (push) Waiting to run
Build / lint (push) Waiting to run
Build / test (push) Waiting to run
Build / integration_tests (push) Waiting to run
Cypress Tests / cypress-run (1) (push) Waiting to run
Cypress Tests / cypress-run (2) (push) Waiting to run
CodeQL / Analyze (javascript) (push) Has been cancelled
feat(backend): Add Gitea proxy backend and LFS support for Gitea backend
2024-12-28 11:41:05 +01:00

63 lines
1.8 KiB
JSON

{
"name": "@staticcms/docs",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"format:prettier": "prettier \"src/**/*.{js,jsx,ts,tsx,css}\" --write",
"format:next": "next lint --fix",
"format": "run-s -c \"format:*\"",
"lint:prettier": "prettier \"src/**/*.{js,jsx,ts,tsx,css}\" --list-different",
"lint:next": "next lint",
"lint": "run-p -c --aggregate-output \"lint:*\""
},
"dependencies": {
"@emotion/react": "11.11.3",
"@emotion/styled": "11.11.0",
"@mui/icons-material": "5.15.3",
"@mui/material": "5.15.3",
"date-fns": "3.6.0",
"gray-matter": "4.0.3",
"js-yaml": "4.1.0",
"next": "14.0.4",
"next-mdx-remote": "4.4.1",
"next-pwa": "5.6.0",
"prismjs": "1.29.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-schemaorg": "2.0.0",
"remark-gfm": "3.0.1",
"schema-dts": "1.1.2",
"yaml": "2.3.4"
},
"devDependencies": {
"@babel/core": "7.26.0",
"@babel/eslint-parser": "7.23.3",
"@emotion/eslint-plugin": "11.11.0",
"@next/bundle-analyzer": "14.0.4",
"@next/eslint-plugin-next": "14.0.4",
"@types/js-yaml": "4.0.9",
"@types/node": "18.19.4",
"@types/prismjs": "1.26.3",
"@types/react": "18.2.46",
"@types/react-dom": "18.2.18",
"@typescript-eslint/eslint-plugin": "6.17.0",
"@typescript-eslint/parser": "6.17.0",
"eslint": "8.56.0",
"eslint-config-next": "14.0.4",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-unicorn": "50.0.1",
"npm-run-all": "4.1.5",
"prettier": "3.1.1",
"typescript": "5.3.3",
"webpack": "5.89.0"
},
"lint-staged": {
"*.ts": "prettier --write",
"*.tsx": "prettier --write"
}
}