1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-09-17 05:25:54 +02:00
.profile/package.json

103 lines
3.4 KiB
JSON
Raw Normal View History

2021-04-18 01:56:23 +02:00
{
"name": "theoludwig",
2024-01-28 16:15:48 +01:00
"version": "3.2.1",
2021-04-18 01:56:23 +02:00
"private": true,
2021-04-20 01:15:07 +02:00
"repository": {
"type": "git",
"url": "https://github.com/theoludwig/theoludwig"
2021-04-18 23:09:51 +02:00
},
2021-06-13 00:30:02 +02:00
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
2021-06-13 00:30:02 +02:00
},
2021-04-18 01:56:23 +02:00
"scripts": {
"dev": "next dev",
2023-05-29 17:33:45 +02:00
"start": "next start",
"build": "npm run curriculum-vitae:build && next build",
2021-04-18 01:56:23 +02:00
"lint:commit": "commitlint",
"lint:editorconfig": "editorconfig-checker",
"lint:markdown": "markdownlint-cli2",
2023-07-19 00:09:28 +02:00
"lint:eslint": "eslint . --max-warnings 0 --report-unused-disable-directives --ignore-path .gitignore",
2023-07-14 23:58:50 +02:00
"lint:prettier": "prettier . --check",
"lint:staged": "lint-staged",
"test:unit": "cypress run --component",
"test:html-w3c-validator": "start-server-and-test \"start\" \"http://127.0.0.1:3000\" \"html-w3c-validator\"",
"test:e2e": "start-server-and-test \"start\" http://127.0.0.1:3000 \"cypress run\"",
"test:dev": "start-server-and-test \"dev\" \"http://127.0.0.1:3000\" \"cypress open\"",
"curriculum-vitae:build": "node ./curriculum-vitae/build.js",
2021-04-20 01:15:07 +02:00
"release": "semantic-release",
"postinstall": "husky"
2021-04-18 01:56:23 +02:00
},
"dependencies": {
2023-12-28 06:21:24 +01:00
"@fontsource/montserrat": "5.0.16",
2024-01-23 22:01:50 +01:00
"@formatjs/intl-localematcher": "0.5.4",
2023-12-28 06:21:24 +01:00
"@fortawesome/fontawesome-svg-core": "6.5.1",
"@fortawesome/free-brands-svg-icons": "6.5.1",
"@fortawesome/free-solid-svg-icons": "6.5.1",
2022-07-01 23:12:47 +02:00
"@fortawesome/react-fontawesome": "0.2.0",
2023-12-28 06:21:24 +01:00
"@giscus/react": "2.4.0",
2024-01-23 22:01:50 +01:00
"clsx": "2.1.0",
"date-and-time": "3.1.1",
2021-11-08 15:10:26 +01:00
"gray-matter": "4.0.3",
2024-01-23 22:01:50 +01:00
"html-react-parser": "5.1.1",
2023-09-18 22:00:11 +02:00
"i18n-js": "4.3.2",
"katex": "0.16.9",
"negotiator": "0.6.3",
2024-01-23 22:01:50 +01:00
"next": "14.1.0",
2023-04-02 22:44:09 +02:00
"next-mdx-remote": "4.4.1",
2022-07-01 23:12:47 +02:00
"react": "18.2.0",
"react-dom": "18.2.0",
2023-12-28 06:21:24 +01:00
"read-pkg": "9.0.1",
"rehype-katex": "6.0.3",
"rehype-raw": "6.1.1",
2022-11-08 11:00:31 +01:00
"rehype-slug": "5.1.0",
2021-11-08 15:10:26 +01:00
"remark-gfm": "3.0.1",
"remark-math": "5.1.1",
2024-01-23 22:01:50 +01:00
"sharp": "0.33.2",
2023-12-28 06:21:24 +01:00
"shiki": "0.14.7",
"unified": "10.1.2",
"unist-util-visit": "5.0.0",
"universal-cookie": "7.0.2"
2021-04-18 01:56:23 +02:00
},
"devDependencies": {
"@commitlint/cli": "18.6.0",
"@commitlint/config-conventional": "18.6.0",
2023-12-28 06:21:24 +01:00
"@saithodev/semantic-release-backmerge": "4.0.1",
"@semantic-release/git": "10.0.1",
2023-09-18 22:00:11 +02:00
"@tailwindcss/typography": "0.5.10",
2024-01-23 22:01:50 +01:00
"@total-typescript/ts-reset": "0.5.1",
2023-09-18 22:00:11 +02:00
"@tsconfig/strictest": "2.0.2",
2023-11-07 20:57:52 +01:00
"@types/negotiator": "0.6.3",
"@types/node": "20.11.16",
"@types/react": "18.2.51",
2024-01-23 22:01:50 +01:00
"@types/unist": "3.0.2",
"@typescript-eslint/eslint-plugin": "6.20.0",
"@typescript-eslint/parser": "6.20.0",
2024-01-23 22:01:50 +01:00
"autoprefixer": "10.4.17",
"curriculum-vitae": "file:./curriculum-vitae",
"cypress": "13.6.4",
2023-12-28 06:21:24 +01:00
"editorconfig-checker": "5.1.2",
"eslint": "8.56.0",
"eslint-config-conventions": "13.1.0",
2024-01-23 22:01:50 +01:00
"eslint-config-next": "14.1.0",
2023-12-28 06:21:24 +01:00
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
2024-01-23 22:01:50 +01:00
"eslint-plugin-prettier": "5.1.3",
2022-10-20 23:57:53 +02:00
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-tailwindcss": "3.14.1",
2023-12-28 06:21:24 +01:00
"eslint-plugin-unicorn": "50.0.1",
"html-w3c-validator": "1.6.1",
"husky": "9.0.10",
"lint-staged": "15.2.1",
2024-01-23 22:01:50 +01:00
"markdownlint-cli2": "0.12.1",
"markdownlint-rule-relative-links": "2.3.1",
2024-01-23 22:01:50 +01:00
"postcss": "8.4.33",
"prettier": "3.2.4",
"prettier-plugin-tailwindcss": "0.5.11",
"semantic-release": "23.0.0",
2023-12-28 06:21:24 +01:00
"start-server-and-test": "2.0.3",
2024-01-23 22:01:50 +01:00
"tailwindcss": "3.4.1",
2023-12-28 06:21:24 +01:00
"typescript": "5.3.3"
2021-04-18 01:56:23 +02:00
}
}