2
2
mirror of https://github.com/Thream/website.git synced 2024-07-21 09:28:32 +02:00
website/package.json

129 lines
4.1 KiB
JSON
Raw Normal View History

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": {
"node": ">=16.0.0",
"npm": ">=8.0.0"
2021-10-24 05:19:39 +02:00
},
"scripts": {
2021-12-28 16:06:58 +01:00
"dev": "next dev",
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",
"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:prettier": "prettier '.' --check",
2021-10-24 05:48:06 +02:00
"lint:staged": "lint-staged",
"test:unit": "jest",
"test:html-w3c-validator": "start-server-and-test 'start' 'http://localhost:3000' 'html-w3c-validator'",
2021-10-24 05:48:06 +02:00
"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-12-28 16:06:58 +01:00
"storybook": "start-storybook --port 6006",
"storybook:build": "build-storybook",
"storybook:serve": "serve -p 6006 storybook-static",
"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",
"@heroicons/react": "1.0.5",
2021-12-28 16:06:58 +01:00
"@sinclair/typebox": "0.23.2",
"ajv": "8.8.2",
"ajv-formats": "2.1.1",
"axios": "0.24.0",
2021-10-24 05:48:06 +02:00
"classnames": "2.3.1",
"date-and-time": "2.0.1",
"emoji-mart": "3.0.1",
"katex": "0.15.1",
2021-12-28 16:06:58 +01:00
"next": "12.0.7",
"next-pwa": "5.4.4",
2021-10-24 05:48:06 +02:00
"next-themes": "0.0.15",
"next-translate": "1.2.0",
"pretty-bytes": "5.6.0",
2021-10-24 05:19:39 +02:00
"react": "17.0.2",
"react-component-form": "2.0.0",
2021-10-24 05:19:39 +02:00
"react-dom": "17.0.2",
"react-infinite-scroll-component": "6.1.0",
"react-markdown": "7.1.2",
"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",
"rehype-katex": "6.0.2",
"remark-breaks": "3.0.2",
"remark-gfm": "3.0.1",
"remark-math": "5.1.1",
2021-12-28 16:06:58 +01:00
"sharp": "0.29.3",
"socket.io-client": "4.4.1",
"unified": "10.1.1",
"unist-util-visit": "4.1.0",
2021-10-24 05:19:39 +02:00
"universal-cookie": "4.0.4"
},
"devDependencies": {
2021-12-28 16:06:58 +01:00
"@commitlint/cli": "16.0.1",
"@commitlint/config-conventional": "16.0.0",
2021-10-24 05:48:06 +02:00
"@lhci/cli": "0.8.2",
"@saithodev/semantic-release-backmerge": "2.1.0",
2021-12-28 16:06:58 +01:00
"@storybook/addon-essentials": "6.4.9",
"@storybook/addon-links": "6.4.9",
2021-10-24 05:48:06 +02:00
"@storybook/addon-postcss": "2.0.0",
2021-12-28 16:06:58 +01:00
"@storybook/builder-webpack5": "6.4.9",
"@storybook/manager-webpack5": "6.4.9",
"@storybook/react": "6.4.9",
"@testing-library/jest-dom": "5.16.1",
2021-10-24 05:48:06 +02:00
"@testing-library/react": "12.1.2",
"@types/date-and-time": "0.13.0",
"@types/emoji-mart": "3.0.9",
"@types/hast": "2.3.4",
"@types/jest": "27.4.0",
"@types/katex": "0.11.1",
"@types/node": "17.0.8",
2021-12-28 16:06:58 +01:00
"@types/react": "17.0.38",
"@types/react-responsive": "8.0.5",
"@types/unist": "2.0.6",
2021-10-24 05:48:06 +02:00
"@typescript-eslint/eslint-plugin": "4.33.0",
"autoprefixer": "10.4.1",
2021-12-28 16:06:58 +01:00
"cypress": "9.2.0",
2021-10-24 05:19:39 +02:00
"editorconfig-checker": "4.0.2",
2021-10-24 05:48:06 +02:00
"eslint": "7.32.0",
"eslint-config-next": "12.0.7",
2021-10-24 05:48:06 +02:00
"eslint-config-prettier": "8.3.0",
"eslint-config-standard-with-typescript": "21.0.1",
"eslint-plugin-import": "2.25.4",
2021-10-24 05:48:06 +02:00
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-promise": "5.1.1",
2021-12-28 16:06:58 +01:00
"eslint-plugin-storybook": "0.5.5",
"eslint-plugin-unicorn": "40.0.0",
"husky": "7.0.4",
"html-w3c-validator": "1.0.0",
"jest": "27.4.7",
"lint-staged": "12.1.5",
2021-12-28 16:06:58 +01:00
"markdownlint-cli": "0.30.0",
"mockttp": "2.5.0",
"next-secure-headers": "2.2.0",
"plop": "3.0.5",
"postcss": "8.4.5",
"prettier": "2.5.1",
"semantic-release": "18.0.1",
"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",
"tailwindcss": "3.0.11",
"typescript": "4.4.4",
2021-12-28 16:06:58 +01:00
"vercel": "23.1.2",
"webpack": "5.65.0"
2021-10-24 05:19:39 +02:00
}
}