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

90 lines
2.4 KiB
JSON
Raw Normal View History

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-04-18 01:56:23 +02:00
"ts-standard": {
"ignore": [
".next",
".lighthouseci",
"node_modules",
"next-env.d.ts",
"**/workbox-*.js",
"**/sw.js"
],
"envs": [
"node",
2021-04-18 23:09:51 +02:00
"browser",
"jest"
2021-04-18 01:56:23 +02:00
],
"report": "stylish"
},
"scripts": {
"dev": "next dev",
"start": "next start",
"build": "next build",
"export": "next export",
"lint:commit": "commitlint",
"lint:docker": "dockerfilelint './Dockerfile'",
"lint:editorconfig": "editorconfig-checker",
"lint:markdown": "markdownlint '**/*.md' --dot --ignore node_modules",
"lint:typescript": "ts-standard",
"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": {
"@fontsource/montserrat": "4.2.2",
"@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",
"axios": "0.21.1",
"classnames": "2.3.1",
2021-04-18 23:09:51 +02:00
"html-react-parser": "1.2.6",
2021-04-18 01:56:23 +02:00
"next": "10.1.3",
"next-pwa": "5.2.14",
2021-04-18 01:56:23 +02:00
"next-translate": "1.0.6",
"nodemailer": "6.5.0",
"normalize.css": "8.0.1",
"nprogress": "0.2.0",
"react": "17.0.2",
"react-component-form": "1.3.0",
"react-dom": "17.0.2",
"universal-cookie": "4.0.4",
"validator": "13.6.0"
2021-04-18 01:56:23 +02:00
},
"devDependencies": {
"@commitlint/cli": "12.1.1",
"@commitlint/config-conventional": "12.1.1",
"@fullhuman/postcss-purgecss": "4.0.3",
"@lhci/cli": "0.7.1",
"@styled-jsx/plugin-sass": "3.0.0",
2021-04-18 23:09:51 +02:00
"@testing-library/jest-dom": "5.11.10",
"@testing-library/react": "11.2.6",
"@types/jest": "26.0.22",
2021-04-18 01:56:23 +02:00
"@types/node": "14.14.41",
"@types/nodemailer": "6.4.1",
"@types/nprogress": "0.2.0",
"@types/react": "17.0.3",
"@types/styled-jsx": "2.2.8",
"@types/validator": "13.1.3",
2021-04-18 23:09:51 +02:00
"babel-jest": "26.6.3",
2021-04-18 01:56:23 +02:00
"dockerfilelint": "1.8.0",
"editorconfig-checker": "4.0.2",
"husky": "6.0.0",
2021-04-18 23:09:51 +02:00
"jest": "26.6.3",
2021-04-18 01:56:23 +02:00
"markdownlint-cli": "0.27.1",
2021-04-18 23:09:51 +02:00
"node-mocks-http": "1.10.1",
2021-04-18 01:56:23 +02:00
"postcss": "8.2.10",
2021-04-20 01:15:07 +02:00
"sass": "1.32.11",
"semantic-release": "17.4.2",
2021-04-18 01:56:23 +02:00
"ts-standard": "10.0.0",
"typescript": "4.2.4"
}
}