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

101 lines
3.1 KiB
JSON
Raw Normal View History

2021-04-18 01:56:23 +02:00
{
"name": "divlo",
2021-09-09 10:15:20 +02:00
"version": "1.3.6",
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": {
"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": "next build",
"export": "next export",
"lint:commit": "commitlint",
"lint:docker": "dockerfilelint './Dockerfile'",
"lint:editorconfig": "editorconfig-checker",
2021-11-08 15:10:26 +01:00
"lint:markdown": "markdownlint '**/*.{md,mdx}' --dot --ignore node_modules",
2021-06-15 20:35:52 +02:00
"lint:typescript": "eslint '**/*.{js,ts,jsx,tsx}'",
"lint:staged": "lint-staged",
2021-08-13 15:48:29 +02:00
"test:unit": "jest",
"test:lighthouse": "lhci autorun",
"test:e2e": "start-server-and-test 'start' 'http://localhost:3000' 'cypress run'",
"test:e2e:dev": "start-server-and-test 'dev' 'http://localhost:3000' 'cypress open'",
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": {
"@fontsource/montserrat": "4.5.1",
"@fortawesome/fontawesome-svg-core": "1.2.36",
"@fortawesome/free-brands-svg-icons": "5.15.4",
"@fortawesome/free-solid-svg-icons": "5.15.4",
2021-10-01 08:51:07 +02:00
"@fortawesome/react-fontawesome": "0.1.16",
2021-04-18 01:56:23 +02:00
"classnames": "2.3.1",
2021-11-08 15:10:26 +01:00
"date-and-time": "2.0.1",
"esbuild": "0.13.12",
"gray-matter": "4.0.3",
2021-10-01 08:51:07 +02:00
"html-react-parser": "1.4.0",
"next": "11.1.2",
2021-11-08 15:10:26 +01:00
"next-mdx-remote": "3.0.8",
2021-10-01 08:51:07 +02:00
"next-pwa": "5.4.0",
"next-themes": "0.0.15",
2021-11-08 15:10:26 +01:00
"next-translate": "1.2.0",
"prism-themes": "1.9.0",
2021-04-18 01:56:23 +02:00
"react": "17.0.2",
"react-dom": "17.0.2",
2021-08-16 15:31:35 +02:00
"read-pkg": "7.0.0",
2021-11-09 15:14:31 +01:00
"rehype-slug": "5.0.0",
2021-11-08 15:10:26 +01:00
"remark-gfm": "3.0.1",
"remark-prism": "1.3.6",
2021-10-01 08:51:07 +02:00
"sharp": "0.29.2",
"universal-cookie": "4.0.4"
2021-04-18 01:56:23 +02:00
},
"devDependencies": {
"@commitlint/cli": "14.1.0",
"@commitlint/config-conventional": "14.1.0",
2021-09-10 20:39:41 +02:00
"@lhci/cli": "0.8.2",
"@saithodev/semantic-release-backmerge": "2.1.0",
"@semantic-release/git": "10.0.1",
2021-11-08 15:10:26 +01:00
"@tailwindcss/typography": "0.4.1",
"@testing-library/jest-dom": "5.15.0",
2021-10-01 08:51:07 +02:00
"@testing-library/react": "12.1.2",
2021-11-08 15:10:26 +01:00
"@types/date-and-time": "0.13.0",
2021-09-10 20:39:41 +02:00
"@types/jest": "27.0.2",
2021-10-01 08:51:07 +02:00
"@types/node": "16.11.6",
"@types/react": "17.0.34",
2021-11-08 15:10:26 +01:00
"@types/remark-prism": "1.3.0",
2021-10-01 08:51:07 +02:00
"@typescript-eslint/eslint-plugin": "4.33.0",
"autoprefixer": "10.4.0",
2021-10-01 08:51:07 +02:00
"babel-jest": "27.3.1",
"cypress": "8.7.0",
2021-04-18 01:56:23 +02:00
"dockerfilelint": "1.8.0",
"editorconfig-checker": "4.0.2",
"eslint": "7.32.0",
"eslint-config-next": "11.1.2",
"eslint-config-prettier": "8.3.0",
"eslint-config-standard-with-typescript": "21.0.1",
2021-10-01 08:51:07 +02:00
"eslint-plugin-import": "2.25.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.0.0",
2021-10-01 08:51:07 +02:00
"eslint-plugin-promise": "5.1.1",
2021-11-08 15:10:26 +01:00
"eslint-plugin-unicorn": "38.0.1",
2021-10-01 08:51:07 +02:00
"husky": "7.0.4",
"jest": "27.3.1",
"lint-staged": "11.2.6",
2021-10-01 08:51:07 +02:00
"markdownlint-cli": "0.29.0",
"next-secure-headers": "2.2.0",
2021-10-01 08:51:07 +02:00
"postcss": "8.3.11",
2021-09-10 20:39:41 +02:00
"prettier": "2.4.1",
"semantic-release": "18.0.0",
"start-server-and-test": "1.14.0",
"tailwindcss": "2.2.19",
2021-10-01 08:51:07 +02:00
"typescript": "4.4.4",
"vercel": "23.1.2"
2021-04-18 01:56:23 +02:00
}
}