1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-09-19 22:15:53 +02:00
.profile/package.json

99 lines
3.2 KiB
JSON
Raw Normal View History

2021-04-18 01:56:23 +02:00
{
"name": "divlo",
2022-11-10 12:35:11 +01:00
"version": "2.5.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/Divlo/Divlo"
2021-04-18 23:09:51 +02:00
},
2021-06-13 00:30:02 +02:00
"engines": {
2022-07-01 23:12:47 +02:00
"node": ">=16.0.0",
"npm": ">=8.0.0"
2021-06-13 00:30:02 +02:00
},
2021-04-18 01:56:23 +02:00
"scripts": {
"dev": "next dev",
"start": "next start",
"build": "npm run resume:build && next build",
2021-04-18 01:56:23 +02:00
"export": "next export",
"lint:commit": "commitlint",
"lint:editorconfig": "editorconfig-checker",
"lint:markdown": "markdownlint-cli2",
"lint:typescript": "eslint \"**/*.{js,jsx,ts,tsx}\" --ignore-path \".gitignore\"",
2022-04-11 12:31:19 +02:00
"lint:prettier": "prettier \".\" --check --ignore-path \".gitignore\"",
"lint:staged": "lint-staged",
"test:unit": "cypress run --component",
2022-10-20 23:57:53 +02:00
"test:html-w3c-validator": "start-server-and-test \"start\" \"http://127.0.0.1:3000\" \"html-w3c-validator\"",
2021-08-13 15:48:29 +02:00
"test:lighthouse": "lhci autorun",
2022-10-20 23:57:53 +02:00
"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\"",
"resume:build": "node ./jsonresume-theme-custom/scripts/build.js",
2021-04-20 01:15:07 +02:00
"release": "semantic-release",
2021-07-27 19:00:21 +02:00
"deploy": "vercel",
2021-04-18 01:56:23 +02:00
"postinstall": "husky install"
},
"dependencies": {
2022-10-03 20:52:15 +02:00
"@fontsource/montserrat": "4.5.13",
2022-09-04 20:40:58 +02:00
"@fortawesome/fontawesome-svg-core": "6.2.0",
"@fortawesome/free-brands-svg-icons": "6.2.0",
"@fortawesome/free-solid-svg-icons": "6.2.0",
2022-07-01 23:12:47 +02:00
"@fortawesome/react-fontawesome": "0.2.0",
2022-11-08 11:00:31 +01:00
"@giscus/react": "2.2.2",
"clsx": "1.2.1",
"date-and-time": "2.4.1",
2021-11-08 15:10:26 +01:00
"gray-matter": "4.0.3",
"html-react-parser": "3.0.4",
2022-11-08 11:00:31 +01:00
"next": "13.0.2",
"next-mdx-remote": "4.2.0",
"next-pwa": "5.6.0",
2022-09-04 20:40:58 +02:00
"next-themes": "0.2.1",
"next-translate": "1.6.0",
2022-07-01 23:12:47 +02:00
"react": "18.2.0",
"react-dom": "18.2.0",
2021-12-04 15:52:51 +01:00
"read-pkg": "7.1.0",
"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",
2022-11-08 11:00:31 +01:00
"sharp": "0.31.2",
"shiki": "0.11.1",
"unified": "10.1.2",
"unist-util-visit": "4.1.1",
"universal-cookie": "4.0.4"
2021-04-18 01:56:23 +02:00
},
"devDependencies": {
2022-11-08 11:00:31 +01:00
"@commitlint/cli": "17.2.0",
"@commitlint/config-conventional": "17.2.0",
2021-12-04 15:52:51 +01:00
"@lhci/cli": "0.9.0",
"@saithodev/semantic-release-backmerge": "2.1.2",
"@semantic-release/git": "10.0.1",
2022-11-08 11:00:31 +01:00
"@tailwindcss/typography": "0.5.8",
"@types/node": "18.11.9",
"@types/react": "18.0.25",
"@types/unist": "2.0.6",
2022-11-08 11:00:31 +01:00
"@typescript-eslint/eslint-plugin": "5.42.1",
"autoprefixer": "10.4.13",
2022-10-27 19:13:29 +02:00
"cypress": "10.11.0",
2021-04-18 01:56:23 +02:00
"editorconfig-checker": "4.0.2",
2022-11-08 11:00:31 +01:00
"eslint": "8.27.0",
2022-10-03 20:52:15 +02:00
"eslint-config-conventions": "5.0.0",
2022-11-08 11:00:31 +01:00
"eslint-config-next": "13.0.2",
"eslint-config-prettier": "8.5.0",
2022-04-11 12:31:19 +02:00
"eslint-plugin-import": "2.26.0",
2022-07-01 23:12:47 +02:00
"eslint-plugin-prettier": "4.2.1",
2022-10-20 23:57:53 +02:00
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-unicorn": "44.0.2",
"html-w3c-validator": "1.2.1",
2022-11-08 11:00:31 +01:00
"husky": "8.0.2",
2022-02-22 21:19:42 +01:00
"jsonresume-theme-custom": "file:./jsonresume-theme-custom",
2022-07-01 23:12:47 +02:00
"lint-staged": "13.0.3",
"markdownlint-cli2": "0.5.1",
2022-10-20 23:57:53 +02:00
"postcss": "8.4.18",
2022-07-01 23:12:47 +02:00
"prettier": "2.7.1",
"prettier-plugin-tailwindcss": "0.1.13",
2022-08-27 02:30:55 +02:00
"semantic-release": "19.0.5",
"start-server-and-test": "1.14.0",
2022-11-08 11:00:31 +01:00
"tailwindcss": "3.2.2",
2022-09-04 20:40:58 +02:00
"typescript": "4.8.4",
2022-11-08 11:00:31 +01:00
"vercel": "28.4.15"
2021-04-18 01:56:23 +02:00
}
}