coder/offlinedocs/package.json

51 lines
1.5 KiB
JSON

{
"name": "coder-docs-generator",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "pnpm copy-images && next dev",
"build": "pnpm exec next build",
"start": "pnpm exec next start",
"export": "pnpm copy-images && next build && next export",
"copy-images": "sh ./scripts/copyImages.sh",
"lint": "pnpm run lint:types",
"lint:fix": "FIX=true pnpm lint",
"lint:types": "pnpm exec tsc --noEmit",
"format:check": "pnpm exec prettier --cache --check './**/*.{css,html,js,json,jsx,md,ts,tsx,yaml,yml}'",
"format:write": "pnpm exec prettier --cache --write './**/*.{css,html,js,json,jsx,md,ts,tsx,yaml,yml}'"
},
"dependencies": {
"@chakra-ui/react": "2.8.0",
"@emotion/react": "11",
"@emotion/styled": "11",
"@types/lodash": "4.14.196",
"archiver": "5.3.1",
"framer-motion": "10",
"front-matter": "4.0.2",
"fs-extra": "11.1.1",
"lodash": "4.17.21",
"next": "13.4.12",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-icons": "4.10.1",
"react-markdown": "8.0.3",
"rehype-raw": "6.1.1",
"remark-gfm": "3.0.1"
},
"devDependencies": {
"@react-native-community/eslint-config": "3.2.0",
"@react-native-community/eslint-plugin": "1.3.0",
"@types/node": "18.17.0",
"@types/react": "18.2.17",
"@types/react-dom": "18.2.7",
"eslint": "8.46.0",
"eslint-config-next": "13.4.10",
"prettier": "3.0.0",
"typescript": "5.1.6"
},
"engines": {
"npm": ">=9.0.0 <10.0.0",
"node": ">=18.0.0 <19.0.0"
}
}