noc-book-2/package.json

68 lines
2 KiB
JSON
Raw Normal View History

2022-02-08 01:58:11 +01:00
{
"name": "noc2",
"version": "1.0.0",
"description": "A repo to test out a workflow with Notion for the Nature of Code book",
"main": "index.js",
"scripts": {
2022-07-21 03:39:22 +02:00
"develop": "gatsby develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"build": "gatsby build",
"build:pdf": "magicbook build",
"test": "jest",
"test:examples": "jest tests/examples.test.js",
2023-10-08 20:56:44 +02:00
"test:snippets": "jest tests/snippets.test.js",
"test:screenshots": "jest tests/screenshots.test.js"
2022-02-08 01:58:11 +01:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/nature-of-code/noc-notion.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/nature-of-code/noc-notion/issues"
},
2022-02-08 02:11:55 +01:00
"homepage": "https://github.com/nature-of-code/noc-notion#readme",
"dependencies": {
2022-07-21 03:39:22 +02:00
"@tailwindcss/typography": "^0.5.4",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"@typescript-eslint/parser": "^6.7.3",
2022-07-21 03:39:22 +02:00
"autoprefixer": "^10.4.7",
"cheerio": "^1.0.0-rc.12",
"eslint": "^8.50.0",
"eslint-plugin-prefer-let": "^3.0.1",
2022-08-08 21:56:08 +02:00
"fs-extra": "^10.1.0",
2022-07-21 03:39:22 +02:00
"gatsby": "^4.19.1",
2022-07-29 03:29:28 +02:00
"gatsby-plugin-image": "^2.19.0",
2022-07-21 03:39:22 +02:00
"gatsby-plugin-postcss": "^5.19.0",
2022-07-26 22:05:50 +02:00
"gatsby-plugin-react-helmet": "^5.19.0",
2022-07-29 03:29:28 +02:00
"gatsby-plugin-sharp": "^4.19.0",
2022-07-26 21:25:53 +02:00
"gatsby-source-filesystem": "^4.19.0",
"gatsby-transformer-json": "^4.19.0",
2022-07-29 03:29:28 +02:00
"gatsby-transformer-sharp": "^4.19.0",
"glob": "^10.3.9",
"jest": "^29.7.0",
2023-11-21 17:15:06 +01:00
"katex": "^0.16.9",
"lodash-es": "^4.17.21",
2024-01-16 15:27:28 +01:00
"magicbook": "^0.1.32",
2022-07-21 03:39:22 +02:00
"postcss": "^8.4.14",
2022-08-18 03:53:45 +02:00
"postcss-import": "^14.1.0",
2022-07-21 03:39:22 +02:00
"react": "^18.2.0",
"react-dom": "^18.2.0",
2022-07-26 22:05:50 +02:00
"react-helmet": "^6.1.0",
2022-08-08 21:56:08 +02:00
"react-icons": "^4.4.0",
2022-08-18 03:53:45 +02:00
"rehype-highlight": "^5.0.2",
"rehype-katex": "^6.0.2",
2022-07-26 21:25:53 +02:00
"rehype-parse": "^8.0.4",
"rehype-react": "^7.1.1",
2022-08-10 04:43:41 +02:00
"rehype-slug": "^5.0.1",
2023-10-08 20:56:44 +02:00
"sharp": "^0.32.6",
2022-07-21 03:39:22 +02:00
"tailwindcss": "^3.1.6",
"typescript": "^5.2.2",
2022-07-26 21:25:53 +02:00
"unified": "^10.1.2",
"unist-util-remove": "^3.1.0",
2022-04-04 22:39:53 +02:00
"unist-util-visit": "^4.1.0"
2022-09-30 21:33:25 +02:00
}
2022-09-30 21:37:45 +02:00
}