2021-12-10 09:56:19 +01:00
|
|
|
{
|
2022-11-12 09:21:23 +01:00
|
|
|
"private": true,
|
2021-12-10 09:56:19 +01:00
|
|
|
"name": "freesewing.dev",
|
2022-10-08 04:27:44 +02:00
|
|
|
"version": "3.0.0-alpha.2",
|
2022-11-12 09:21:23 +01:00
|
|
|
"description": "Source code for the FreeSewing.dev website",
|
|
|
|
"author": "Joost De Cock <joost@joost.at> (https://github.com/joostdecock)",
|
|
|
|
"homepage": "https://freesewing.org/",
|
|
|
|
"repository": "github:freesewing/freesewing",
|
|
|
|
"license": "MIT",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/freesewing/freesewing/issues"
|
|
|
|
},
|
|
|
|
"funding": {
|
|
|
|
"type": "individual",
|
|
|
|
"url": "https://freesewing.org/patrons/join"
|
|
|
|
},
|
2021-12-10 09:56:19 +01:00
|
|
|
"scripts": {
|
2022-06-17 12:02:09 +02:00
|
|
|
"dev": "node --experimental-json-modules ./node_modules/.bin/next dev -p 8000",
|
2021-12-10 09:56:19 +01:00
|
|
|
"develop": "next dev -p 3002",
|
2022-06-17 12:02:09 +02:00
|
|
|
"prebuild": "SITE=dev node --experimental-json-modules ../shared/prebuild/index.mjs",
|
2022-06-19 16:09:53 +02:00
|
|
|
"build": "node --experimental-json-modules ./node_modules/.bin/next build",
|
2022-08-10 14:02:57 +02:00
|
|
|
"cibuild": "yarn prebuild && node --experimental-json-modules ./node_modules/.bin/next build && node scripts/algolia.mjs",
|
2022-07-02 20:20:43 +02:00
|
|
|
"start": "yarn prebuild && node --experimental-json-modules ./node_modules/.bin/next dev -p 8000",
|
2021-12-27 09:55:52 +01:00
|
|
|
"lint": "next lint",
|
2022-06-17 12:02:09 +02:00
|
|
|
"serve": "pm2 start npm --name 'dev' -- run start"
|
2021-12-10 09:56:19 +01:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2022-12-04 13:19:42 +01:00
|
|
|
"@heroicons/react": "latest",
|
|
|
|
"@mdx-js/loader": "latest",
|
|
|
|
"@mdx-js/mdx": "latest",
|
|
|
|
"@mdx-js/react": "latest",
|
|
|
|
"@mdx-js/runtime": "latest",
|
|
|
|
"@next/bundle-analyzer": "^13",
|
|
|
|
"@tailwindcss/typography": "latest",
|
2021-12-31 08:27:13 +01:00
|
|
|
"algoliasearch": "^4.11.0",
|
2022-02-16 16:28:41 +00:00
|
|
|
"daisyui": "^2.0.6",
|
2021-12-17 17:51:20 +01:00
|
|
|
"lodash.get": "^4.4.2",
|
2021-12-18 09:54:53 +01:00
|
|
|
"lodash.orderby": "^4.6.0",
|
2021-12-17 17:51:20 +01:00
|
|
|
"lodash.set": "^4.3.2",
|
2022-12-11 14:33:05 -06:00
|
|
|
"next": "^13.0.0",
|
2022-12-04 13:19:42 +01:00
|
|
|
"react": "^18.2.0",
|
2022-01-16 18:47:47 +01:00
|
|
|
"react-copy-to-clipboard": "^5.0.4",
|
2022-12-04 13:19:42 +01:00
|
|
|
"react-dom": "^18.2.0",
|
2022-12-05 04:09:58 +00:00
|
|
|
"react-hotkeys-hook": "^4.0.4",
|
2021-12-31 08:27:13 +01:00
|
|
|
"react-instantsearch-dom": "^6.18.0",
|
2022-08-25 04:11:01 +00:00
|
|
|
"react-markdown": "^8.0.3",
|
2022-06-21 08:42:46 +00:00
|
|
|
"react-swipeable": "^7.0.0",
|
2022-06-29 04:22:24 +00:00
|
|
|
"react-timeago": "^7.1.0",
|
2022-02-05 17:45:23 +01:00
|
|
|
"rehype-autolink-headings": "^6.1.1",
|
2022-10-13 04:01:27 +00:00
|
|
|
"rehype-highlight": "^6.0.0",
|
2021-12-31 08:27:13 +01:00
|
|
|
"rehype-sanitize": "^5.0.1",
|
2022-02-05 17:45:23 +01:00
|
|
|
"rehype-slug": "^5.0.1",
|
2021-12-31 08:27:13 +01:00
|
|
|
"rehype-stringify": "^9.0.2",
|
2021-12-27 10:04:41 +01:00
|
|
|
"remark-copy-linked-files": "https://github.com/joostdecock/remark-copy-linked-files",
|
2022-10-03 15:08:11 +02:00
|
|
|
"remark-gfm": "^3.0.1"
|
2021-12-10 09:56:19 +01:00
|
|
|
},
|
2021-12-10 10:30:15 +01:00
|
|
|
"devDependencies": {
|
|
|
|
"autoprefixer": "^10.4.0",
|
2022-12-03 15:51:27 +00:00
|
|
|
"eslint-config-next": "13.0.6",
|
2021-12-17 17:51:20 +01:00
|
|
|
"js-yaml": "^4.1.0",
|
2021-12-10 10:30:15 +01:00
|
|
|
"postcss": "^8.4.4",
|
2022-02-05 17:45:23 +01:00
|
|
|
"tailwindcss": "^3.0.1",
|
2022-04-28 04:33:53 +00:00
|
|
|
"yaml-loader": "^0.8.0"
|
2021-12-10 10:30:15 +01:00
|
|
|
}
|
2021-12-10 09:56:19 +01:00
|
|
|
}
|