2021-04-18 01:56:23 +02:00
|
|
|
{
|
|
|
|
"name": "divlo",
|
2021-04-20 01:15:07 +02:00
|
|
|
"version": "0.0.0-development",
|
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": {
|
2021-06-13 00:31:34 +02:00
|
|
|
"node": ">=14.0.0",
|
2021-06-13 00:30:02 +02:00
|
|
|
"npm": ">=7.0.0"
|
|
|
|
},
|
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-05-08 19:52:04 +02:00
|
|
|
"lint:markdown": "markdownlint '*.md' --dot --ignore node_modules",
|
|
|
|
"lint:typescript": "eslint '*.{js,ts,jsx,tsx}'",
|
|
|
|
"lint:staged": "lint-staged",
|
2021-04-18 01:56:23 +02:00
|
|
|
"lighthouse": "lhci autorun",
|
2021-04-18 23:09:51 +02:00
|
|
|
"test": "jest",
|
2021-04-20 01:15:07 +02:00
|
|
|
"release": "semantic-release",
|
2021-04-18 01:56:23 +02:00
|
|
|
"postinstall": "husky install"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2021-06-07 10:58:15 +02:00
|
|
|
"@fontsource/montserrat": "4.4.5",
|
2021-04-18 01:56:23 +02:00
|
|
|
"@fortawesome/fontawesome-svg-core": "1.2.35",
|
|
|
|
"@fortawesome/free-brands-svg-icons": "5.15.3",
|
|
|
|
"@fortawesome/free-solid-svg-icons": "5.15.3",
|
|
|
|
"@fortawesome/react-fontawesome": "0.1.14",
|
|
|
|
"classnames": "2.3.1",
|
2021-04-18 23:09:51 +02:00
|
|
|
"html-react-parser": "1.2.6",
|
2021-05-25 08:56:30 +02:00
|
|
|
"next": "10.2.3",
|
2021-05-08 19:52:04 +02:00
|
|
|
"next-pwa": "5.2.21",
|
|
|
|
"next-themes": "0.0.14",
|
2021-05-24 11:30:08 +02:00
|
|
|
"next-translate": "1.0.7",
|
2021-04-18 01:56:23 +02:00
|
|
|
"react": "17.0.2",
|
|
|
|
"react-dom": "17.0.2",
|
2021-05-08 19:52:04 +02:00
|
|
|
"universal-cookie": "4.0.4"
|
2021-04-18 01:56:23 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-05-13 13:38:13 +02:00
|
|
|
"@commitlint/cli": "12.1.4",
|
2021-05-13 13:36:00 +02:00
|
|
|
"@commitlint/config-conventional": "12.1.4",
|
2021-06-07 14:44:05 +02:00
|
|
|
"@lhci/cli": "0.8.0",
|
2021-06-13 00:30:02 +02:00
|
|
|
"@testing-library/jest-dom": "5.14.1",
|
2021-05-17 15:54:32 +02:00
|
|
|
"@testing-library/react": "11.2.7",
|
2021-04-27 10:32:59 +02:00
|
|
|
"@types/jest": "26.0.23",
|
2021-06-08 09:16:12 +02:00
|
|
|
"@types/node": "15.12.2",
|
2021-06-10 00:17:52 +02:00
|
|
|
"@types/react": "17.0.11",
|
2021-04-18 01:56:23 +02:00
|
|
|
"@types/styled-jsx": "2.2.8",
|
2021-06-08 09:16:29 +02:00
|
|
|
"@typescript-eslint/eslint-plugin": "4.26.1",
|
2021-05-26 18:54:09 +02:00
|
|
|
"autoprefixer": "10.2.6",
|
2021-05-31 13:42:14 +02:00
|
|
|
"babel-jest": "27.0.2",
|
2021-04-18 01:56:23 +02:00
|
|
|
"dockerfilelint": "1.8.0",
|
|
|
|
"editorconfig-checker": "4.0.2",
|
2021-06-07 10:57:38 +02:00
|
|
|
"eslint": "7.28.0",
|
2021-05-08 19:52:04 +02:00
|
|
|
"eslint-config-prettier": "8.3.0",
|
|
|
|
"eslint-config-standard-with-typescript": "20.0.0",
|
2021-05-31 13:42:53 +02:00
|
|
|
"eslint-plugin-import": "2.23.4",
|
2021-05-08 19:52:04 +02:00
|
|
|
"eslint-plugin-node": "11.1.0",
|
|
|
|
"eslint-plugin-prettier": "3.4.0",
|
2021-05-26 18:54:09 +02:00
|
|
|
"eslint-plugin-promise": "5.1.0",
|
2021-04-18 01:56:23 +02:00
|
|
|
"husky": "6.0.0",
|
2021-06-04 10:24:58 +02:00
|
|
|
"jest": "27.0.4",
|
2021-05-08 19:52:04 +02:00
|
|
|
"lint-staged": "11.0.0",
|
2021-04-18 01:56:23 +02:00
|
|
|
"markdownlint-cli": "0.27.1",
|
2021-06-11 09:02:51 +02:00
|
|
|
"postcss": "8.3.2",
|
2021-06-07 10:57:58 +02:00
|
|
|
"prettier": "2.3.1",
|
2021-05-13 13:35:49 +02:00
|
|
|
"semantic-release": "17.4.3",
|
2021-06-03 10:54:11 +02:00
|
|
|
"tailwindcss": "2.1.4",
|
2021-05-27 10:23:19 +02:00
|
|
|
"typescript": "4.3.2"
|
2021-04-18 01:56:23 +02:00
|
|
|
}
|
|
|
|
}
|