2021-10-24 05:19:39 +02:00
|
|
|
{
|
|
|
|
"name": "@thream/website",
|
|
|
|
"version": "0.0.1",
|
|
|
|
"private": true,
|
2021-10-24 05:48:06 +02:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/Thream/website"
|
2021-10-24 05:19:39 +02:00
|
|
|
},
|
2021-10-24 05:48:06 +02:00
|
|
|
"engines": {
|
2021-10-24 06:09:43 +02:00
|
|
|
"node": ">=16.0.0",
|
|
|
|
"npm": ">=8.0.0"
|
2021-10-24 05:19:39 +02:00
|
|
|
},
|
|
|
|
"scripts": {
|
2021-10-24 05:48:06 +02:00
|
|
|
"dev": "next dev --port=3000",
|
2021-10-24 05:19:39 +02:00
|
|
|
"start": "next start",
|
|
|
|
"build": "next build",
|
|
|
|
"export": "next export",
|
2021-10-24 05:48:06 +02:00
|
|
|
"generate": "plop",
|
2021-10-24 05:19:39 +02:00
|
|
|
"lint:commit": "commitlint",
|
2021-10-24 05:48:06 +02:00
|
|
|
"lint:docker": "dockerfilelint './Dockerfile'",
|
2021-10-24 05:19:39 +02:00
|
|
|
"lint:editorconfig": "editorconfig-checker",
|
2021-10-24 05:48:06 +02:00
|
|
|
"lint:markdown": "markdownlint '**/*.md' --dot --ignore 'node_modules'",
|
|
|
|
"lint:typescript": "eslint '**/*.{js,ts,jsx,tsx}'",
|
|
|
|
"lint:staged": "lint-staged",
|
|
|
|
"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'",
|
|
|
|
"storybook": "start-storybook --port 6006 --static-dir public",
|
|
|
|
"storybook:build": "build-storybook --static-dir public",
|
2021-11-13 21:50:34 +01:00
|
|
|
"storybook:serve": "serve -p 6006 storybook-static",
|
2021-10-24 06:09:43 +02:00
|
|
|
"release": "semantic-release",
|
2021-10-24 05:48:06 +02:00
|
|
|
"deploy": "vercel",
|
2021-10-24 05:19:39 +02:00
|
|
|
"postinstall": "husky install"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2021-10-24 05:48:06 +02:00
|
|
|
"@fontsource/montserrat": "4.5.1",
|
|
|
|
"@fontsource/roboto": "4.5.1",
|
2021-11-13 21:50:34 +01:00
|
|
|
"@heroicons/react": "1.0.5",
|
2021-10-24 06:09:43 +02:00
|
|
|
"@sinclair/typebox": "0.20.5",
|
2021-11-13 21:50:34 +01:00
|
|
|
"ajv": "8.7.1",
|
2021-10-24 06:09:43 +02:00
|
|
|
"ajv-formats": "2.1.1",
|
2021-11-13 21:50:34 +01:00
|
|
|
"axios": "0.24.0",
|
2021-10-24 05:48:06 +02:00
|
|
|
"classnames": "2.3.1",
|
2021-10-24 06:09:43 +02:00
|
|
|
"date-and-time": "2.0.1",
|
2021-10-24 05:48:06 +02:00
|
|
|
"next": "11.1.2",
|
2021-11-13 21:50:34 +01:00
|
|
|
"next-pwa": "5.4.0",
|
2021-10-24 05:48:06 +02:00
|
|
|
"next-themes": "0.0.15",
|
2021-11-13 21:50:34 +01:00
|
|
|
"next-translate": "1.2.0",
|
2021-10-24 05:19:39 +02:00
|
|
|
"react": "17.0.2",
|
2021-10-24 06:09:43 +02:00
|
|
|
"react-component-form": "2.0.0",
|
2021-10-24 05:19:39 +02:00
|
|
|
"react-dom": "17.0.2",
|
2021-11-13 21:50:34 +01:00
|
|
|
"react-infinite-scroll-component": "6.1.0",
|
2021-10-24 06:09:43 +02:00
|
|
|
"react-responsive": "8.2.0",
|
|
|
|
"react-swipeable": "6.2.0",
|
|
|
|
"react-textarea-autosize": "8.3.3",
|
2021-10-24 05:48:06 +02:00
|
|
|
"read-pkg": "7.0.0",
|
2021-11-13 21:50:34 +01:00
|
|
|
"sharp": "0.29.2",
|
2021-10-24 06:09:43 +02:00
|
|
|
"socket.io-client": "4.3.2",
|
2021-10-24 05:19:39 +02:00
|
|
|
"universal-cookie": "4.0.4"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-11-13 21:50:34 +01:00
|
|
|
"@commitlint/cli": "14.1.0",
|
|
|
|
"@commitlint/config-conventional": "14.1.0",
|
2021-10-24 05:48:06 +02:00
|
|
|
"@lhci/cli": "0.8.2",
|
2021-11-13 21:50:34 +01:00
|
|
|
"@saithodev/semantic-release-backmerge": "2.1.0",
|
|
|
|
"@storybook/addon-essentials": "6.3.12",
|
|
|
|
"@storybook/addon-links": "6.3.12",
|
2021-10-24 05:48:06 +02:00
|
|
|
"@storybook/addon-postcss": "2.0.0",
|
2021-11-13 21:50:34 +01:00
|
|
|
"@storybook/react": "6.3.12",
|
|
|
|
"@testing-library/jest-dom": "5.15.0",
|
2021-10-24 05:48:06 +02:00
|
|
|
"@testing-library/react": "12.1.2",
|
2021-10-24 06:09:43 +02:00
|
|
|
"@types/date-and-time": "0.13.0",
|
2021-10-24 05:48:06 +02:00
|
|
|
"@types/jest": "27.0.2",
|
2021-11-13 21:50:34 +01:00
|
|
|
"@types/node": "16.11.7",
|
|
|
|
"@types/react": "17.0.34",
|
2021-10-24 06:09:43 +02:00
|
|
|
"@types/react-responsive": "8.0.4",
|
2021-10-24 05:48:06 +02:00
|
|
|
"@typescript-eslint/eslint-plugin": "4.33.0",
|
2021-11-13 21:50:34 +01:00
|
|
|
"autoprefixer": "10.4.0",
|
|
|
|
"babel-jest": "27.3.1",
|
|
|
|
"babel-loader": "8.2.3",
|
2021-10-24 05:48:06 +02:00
|
|
|
"babel-register": "6.26.0",
|
2021-11-13 21:50:34 +01:00
|
|
|
"cypress": "9.0.0",
|
2021-10-24 05:19:39 +02:00
|
|
|
"dockerfilelint": "1.8.0",
|
|
|
|
"editorconfig-checker": "4.0.2",
|
2021-10-24 05:48:06 +02:00
|
|
|
"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-11-13 21:50:34 +01:00
|
|
|
"eslint-plugin-import": "2.25.3",
|
2021-10-24 05:48:06 +02:00
|
|
|
"eslint-plugin-node": "11.1.0",
|
|
|
|
"eslint-plugin-prettier": "4.0.0",
|
2021-11-13 21:50:34 +01:00
|
|
|
"eslint-plugin-promise": "5.1.1",
|
|
|
|
"eslint-plugin-unicorn": "38.0.1",
|
|
|
|
"husky": "7.0.4",
|
|
|
|
"jest": "27.3.1",
|
|
|
|
"lint-staged": "11.2.6",
|
2021-10-24 05:48:06 +02:00
|
|
|
"markdownlint-cli": "0.29.0",
|
2021-11-13 21:50:34 +01:00
|
|
|
"mockttp": "2.4.0",
|
|
|
|
"plop": "2.7.6",
|
|
|
|
"postcss": "8.3.11",
|
2021-10-24 05:48:06 +02:00
|
|
|
"prettier": "2.4.1",
|
2021-10-24 06:09:43 +02:00
|
|
|
"semantic-release": "18.0.0",
|
2021-11-13 21:50:34 +01:00
|
|
|
"serve": "13.0.2",
|
2021-10-24 05:48:06 +02:00
|
|
|
"start-server-and-test": "1.14.0",
|
|
|
|
"storybook-tailwind-dark-mode": "1.0.11",
|
2021-11-13 21:50:34 +01:00
|
|
|
"tailwindcss": "2.2.19",
|
|
|
|
"typescript": "4.4.4",
|
2021-10-24 05:48:06 +02:00
|
|
|
"vercel": "23.1.2"
|
2021-10-24 05:19:39 +02:00
|
|
|
}
|
|
|
|
}
|