2022-09-30 08:59:03 -06:00
|
|
|
{
|
2022-12-15 13:44:49 -05:00
|
|
|
"name": "docs",
|
2022-12-05 10:08:42 -05:00
|
|
|
"version": "1.0.0",
|
2022-10-25 09:18:18 -04:00
|
|
|
"private": true,
|
2022-09-30 08:59:03 -06:00
|
|
|
"scripts": {
|
2022-10-25 09:18:18 -04:00
|
|
|
"dev": "next dev",
|
|
|
|
"build": "next build",
|
|
|
|
"start": "next start",
|
2022-12-05 10:08:42 -05:00
|
|
|
"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:*\""
|
2022-09-30 08:59:03 -06:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-12-01 20:25:53 -05:00
|
|
|
"@emotion/react": "11.10.5",
|
|
|
|
"@emotion/styled": "11.10.5",
|
2022-12-13 10:11:19 -05:00
|
|
|
"@mui/icons-material": "5.11.0",
|
2023-01-24 16:08:16 -05:00
|
|
|
"@mui/material": "5.11.6",
|
2022-10-25 09:18:18 -04:00
|
|
|
"date-fns": "2.29.3",
|
|
|
|
"gray-matter": "4.0.3",
|
|
|
|
"js-yaml": "4.1.0",
|
2023-01-20 22:19:02 -05:00
|
|
|
"next": "13.1.4",
|
2023-01-20 15:24:41 -05:00
|
|
|
"next-mdx-remote": "4.3.0",
|
2022-10-25 09:18:18 -04:00
|
|
|
"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",
|
2022-11-07 10:27:58 -05:00
|
|
|
"schema-dts": "1.1.0",
|
2022-12-30 08:57:35 -05:00
|
|
|
"yaml": "2.2.1"
|
2022-09-30 08:59:03 -06:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-01-04 15:08:11 -05:00
|
|
|
"@babel/core": "7.20.12",
|
2022-10-25 09:18:18 -04:00
|
|
|
"@emotion/eslint-plugin": "11.10.0",
|
2023-01-23 15:35:03 -05:00
|
|
|
"@next/bundle-analyzer": "13.1.5",
|
|
|
|
"@next/eslint-plugin-next": "13.1.5",
|
2022-10-25 09:18:18 -04:00
|
|
|
"@types/js-yaml": "4.0.5",
|
2022-12-26 20:51:28 -05:00
|
|
|
"@types/node": "16.18.11",
|
2022-12-20 16:56:19 -05:00
|
|
|
"@types/prettier": "2.7.2",
|
2022-10-25 09:18:18 -04:00
|
|
|
"@types/prismjs": "1.26.0",
|
2023-01-18 15:46:04 -05:00
|
|
|
"@types/react": "18.0.27",
|
2022-12-23 11:01:09 -05:00
|
|
|
"@types/react-dom": "18.0.10",
|
2023-01-23 14:04:09 -05:00
|
|
|
"@typescript-eslint/eslint-plugin": "5.49.0",
|
|
|
|
"@typescript-eslint/parser": "5.49.0",
|
2022-10-25 09:18:18 -04:00
|
|
|
"babel-eslint": "10.1.0",
|
2023-01-15 08:06:11 -05:00
|
|
|
"eslint": "8.32.0",
|
2023-01-20 22:19:02 -05:00
|
|
|
"eslint-config-next": "13.1.4",
|
2023-01-02 17:25:47 -05:00
|
|
|
"eslint-config-prettier": "8.6.0",
|
2022-10-25 09:18:18 -04:00
|
|
|
"eslint-plugin-babel": "5.3.1",
|
2022-12-12 08:24:56 -05:00
|
|
|
"eslint-plugin-unicorn": "45.0.2",
|
2022-12-05 10:08:42 -05:00
|
|
|
"npm-run-all": "4.1.5",
|
2023-01-14 14:08:55 -05:00
|
|
|
"prettier": "2.8.3",
|
2022-12-07 20:41:44 -08:00
|
|
|
"typescript": "4.9.4",
|
2022-12-01 21:39:55 -05:00
|
|
|
"webpack": "5.75.0"
|
2022-12-06 09:41:54 -05:00
|
|
|
},
|
|
|
|
"lint-staged": {
|
2022-12-06 09:51:40 -05:00
|
|
|
"*.ts": "prettier --write",
|
|
|
|
"*.tsx": "prettier --write"
|
2022-10-25 09:18:18 -04:00
|
|
|
}
|
2022-09-30 08:59:03 -06:00
|
|
|
}
|