noc-book-2/package.json

52 lines
1.5 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": {
"test": "echo \"Error: no test specified\" && exit 1",
2022-07-21 03:39:22 +02:00
"develop": "gatsby develop",
"serve": "gatsby serve",
"clean": "gatsby clean",
"build": "gatsby build",
2022-07-20 21:35:18 +02:00
"build:pdf": "magicbook build",
2022-07-20 21:22:10 +02:00
"import-notion-docs": "node scripts/import-notion-docs.mjs"
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-20 21:22:10 +02:00
"@notionhq/client": "^2.0.0",
2022-07-21 03:39:22 +02:00
"@tailwindcss/typography": "^0.5.4",
"autoprefixer": "^10.4.7",
2022-04-05 15:11:38 +02:00
"dotenv": "^16.0.0",
2022-07-21 03:39:22 +02:00
"gatsby": "^4.19.1",
"gatsby-plugin-postcss": "^5.19.0",
2022-07-26 21:25:53 +02:00
"gatsby-source-filesystem": "^4.19.0",
"gatsby-transformer-json": "^4.19.0",
2022-04-04 22:39:53 +02:00
"hast-util-to-html": "^8.0.3",
"hastscript": "^7.0.2",
2022-07-20 21:35:18 +02:00
"magicbook": "^0.1.20",
2022-02-20 15:55:24 +01:00
"magicbook-codesplit": "^0.1.6",
2022-03-31 17:30:20 +02:00
"magicbook-katex": "0.0.7",
2022-07-21 03:39:22 +02:00
"postcss": "^8.4.14",
"prismjs": "^1.28.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
2022-04-04 22:39:53 +02:00
"rehype-format": "^4.0.1",
2022-07-26 21:25:53 +02:00
"rehype-parse": "^8.0.4",
"rehype-react": "^7.1.1",
2022-07-21 03:39:22 +02:00
"tailwindcss": "^3.1.6",
2022-07-26 21:25:53 +02:00
"unified": "^10.1.2",
2022-04-04 22:39:53 +02:00
"unist-util-visit": "^4.1.0"
2022-02-20 15:55:24 +01:00
},
2022-07-20 21:19:04 +02:00
"devDependencies": {}
2022-02-08 01:58:11 +01:00
}