mirror of
https://github.com/SrIzan10/next-auth.git
synced 2026-05-01 10:55:20 +00:00
* fix labeler * try fixing test runs in GitHub Actions * pass flags to test command * test version pr * move versoin-pr action * remove --dry-run flag * re-enable testing, re-add semantic release for now * add docs * use `yarn.lock` and different docs port * simplify dev app config * fix coverage report * fix provider source links * fix more links
55 lines
1.4 KiB
JSON
55 lines
1.4 KiB
JSON
{
|
|
"name": "next-auth-docs",
|
|
"version": "0.2.0",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/nextauthjs/docs.git"
|
|
},
|
|
"scripts": {
|
|
"start": "npm run generate-providers && docusaurus start --port 8000",
|
|
"dev": "npm run start",
|
|
"build": "npm run generate-providers && docusaurus build",
|
|
"docusaurus": "docusaurus",
|
|
"swizzle": "docusaurus swizzle",
|
|
"deploy": "docusaurus deploy",
|
|
"serve": "docusaurus serve",
|
|
"clear": "docusaurus clear",
|
|
"lint": "standard",
|
|
"lint:fix": "standard --fix",
|
|
"generate-providers": "node ./scripts/generate-providers.js"
|
|
},
|
|
"dependencies": {
|
|
"@docusaurus/core": "2.0.0-beta.9",
|
|
"@docusaurus/preset-classic": "2.0.0-beta.9",
|
|
"@docusaurus/remark-plugin-npm2yarn": "^2.0.0-beta.9",
|
|
"classnames": "^2.3.1",
|
|
"lodash.times": "^4.3.2",
|
|
"react": "^17.0.2",
|
|
"react-dom": "^17.0.2",
|
|
"react-marquee-slider": "^1.1.5",
|
|
"remark-github": "^10.1.0",
|
|
"remark-mermaid-dataurl": "^1.0.2",
|
|
"styled-components": "^5.3.3"
|
|
},
|
|
"browserslist": {
|
|
"production": [
|
|
">0.2%",
|
|
"not dead",
|
|
"not op_mini all"
|
|
],
|
|
"development": [
|
|
"last 1 chrome version",
|
|
"last 1 firefox version",
|
|
"last 1 safari version"
|
|
]
|
|
},
|
|
"prettier": {
|
|
"semi": false,
|
|
"singleQuote": false
|
|
},
|
|
"devDependencies": {
|
|
"prettier": "^2.5.0",
|
|
"standard": "^16.0.4"
|
|
}
|
|
}
|