2021-04-18 01:56:23 +02:00
|
|
|
{
|
|
|
|
"name": "divlo",
|
2021-09-02 00:17:55 +02:00
|
|
|
"version": "1.3.5",
|
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-06-15 20:35:52 +02:00
|
|
|
"lint:markdown": "markdownlint '**/*.md' --dot --ignore node_modules",
|
|
|
|
"lint:typescript": "eslint '**/*.{js,ts,jsx,tsx}'",
|
2021-05-08 19:52:04 +02:00
|
|
|
"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": {
|
2021-08-12 01:19:11 +02:00
|
|
|
"@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-08-04 10:38:07 +02:00
|
|
|
"@fortawesome/react-fontawesome": "0.1.15",
|
2021-04-18 01:56:23 +02:00
|
|
|
"classnames": "2.3.1",
|
2021-08-13 15:48:29 +02:00
|
|
|
"html-react-parser": "1.2.8",
|
2021-09-01 16:34:50 +02:00
|
|
|
"next": "11.1.2",
|
2021-08-17 20:49:12 +02:00
|
|
|
"next-pwa": "5.3.1",
|
2021-06-28 12:02:15 +02:00
|
|
|
"next-themes": "0.0.15",
|
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-08-16 15:31:35 +02:00
|
|
|
"read-pkg": "7.0.0",
|
2021-08-18 11:26:24 +02:00
|
|
|
"sharp": "0.29.0",
|
2021-05-08 19:52:04 +02:00
|
|
|
"universal-cookie": "4.0.4"
|
2021-04-18 01:56:23 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-07-26 06:49:55 +02:00
|
|
|
"@commitlint/cli": "13.1.0",
|
2021-07-26 06:48:57 +02:00
|
|
|
"@commitlint/config-conventional": "13.1.0",
|
2021-09-02 00:13:20 +02:00
|
|
|
"@lhci/cli": "0.8.1",
|
2021-07-27 21:01:33 +02:00
|
|
|
"@saithodev/semantic-release-backmerge": "1.5.3",
|
2021-07-27 19:26:08 +02:00
|
|
|
"@semantic-release/git": "9.0.0",
|
2021-06-13 00:30:02 +02:00
|
|
|
"@testing-library/jest-dom": "5.14.1",
|
2021-06-24 09:26:31 +02:00
|
|
|
"@testing-library/react": "12.0.0",
|
2021-08-13 15:48:29 +02:00
|
|
|
"@types/jest": "27.0.1",
|
2021-09-01 16:35:19 +02:00
|
|
|
"@types/node": "16.7.10",
|
2021-08-20 10:37:38 +02:00
|
|
|
"@types/react": "17.0.19",
|
2021-09-01 16:37:39 +02:00
|
|
|
"@typescript-eslint/eslint-plugin": "4.30.0",
|
2021-08-27 12:40:52 +02:00
|
|
|
"autoprefixer": "10.3.3",
|
2021-08-27 12:45:07 +02:00
|
|
|
"babel-jest": "27.1.0",
|
2021-09-01 16:36:12 +02:00
|
|
|
"cypress": "8.3.1",
|
2021-04-18 01:56:23 +02:00
|
|
|
"dockerfilelint": "1.8.0",
|
|
|
|
"editorconfig-checker": "4.0.2",
|
2021-08-04 10:39:12 +02:00
|
|
|
"eslint": "7.32.0",
|
2021-09-01 16:35:03 +02:00
|
|
|
"eslint-config-next": "11.1.2",
|
2021-05-08 19:52:04 +02:00
|
|
|
"eslint-config-prettier": "8.3.0",
|
2021-09-01 16:38:44 +02:00
|
|
|
"eslint-config-standard-with-typescript": "21.0.1",
|
2021-08-27 12:41:29 +02:00
|
|
|
"eslint-plugin-import": "2.24.2",
|
2021-05-08 19:52:04 +02:00
|
|
|
"eslint-plugin-node": "11.1.0",
|
2021-09-01 16:35:35 +02:00
|
|
|
"eslint-plugin-prettier": "4.0.0",
|
2021-05-26 18:54:09 +02:00
|
|
|
"eslint-plugin-promise": "5.1.0",
|
2021-08-12 01:19:11 +02:00
|
|
|
"eslint-plugin-unicorn": "35.0.0",
|
2021-08-27 12:40:30 +02:00
|
|
|
"husky": "7.0.2",
|
2021-08-27 12:45:18 +02:00
|
|
|
"jest": "27.1.0",
|
2021-08-12 01:19:11 +02:00
|
|
|
"lint-staged": "11.1.2",
|
2021-07-26 06:48:10 +02:00
|
|
|
"markdownlint-cli": "0.28.1",
|
2021-08-12 01:19:11 +02:00
|
|
|
"next-secure-headers": "2.2.0",
|
2021-07-22 07:55:45 +02:00
|
|
|
"postcss": "8.3.6",
|
2021-06-28 12:03:12 +02:00
|
|
|
"prettier": "2.3.2",
|
2021-08-27 12:41:43 +02:00
|
|
|
"semantic-release": "17.4.7",
|
2021-09-03 09:54:17 +02:00
|
|
|
"start-server-and-test": "1.14.0",
|
2021-09-01 16:37:17 +02:00
|
|
|
"tailwindcss": "2.2.9",
|
2021-08-27 12:40:16 +02:00
|
|
|
"typescript": "4.4.2",
|
2021-08-12 01:19:11 +02:00
|
|
|
"vercel": "23.1.2"
|
2021-04-18 01:56:23 +02:00
|
|
|
}
|
|
|
|
}
|