XeNote/package.json

82 lines
2.2 KiB
JSON
Raw Normal View History

2020-11-28 15:45:01 +00:00
{
2023-12-24 02:44:11 +00:00
"name": "XeNote",
2020-11-28 15:45:01 +00:00
"version": "0.1.0",
2023-12-24 02:44:11 +00:00
"private": false,
2020-11-28 15:45:01 +00:00
"scripts": {
"dev": "rm -rf graph-data.json && next dev ",
2022-04-29 08:43:30 +00:00
"build": "rm -rf graph-data.json && next build",
2024-01-07 16:22:28 +00:00
"start": "next start",
"lint": "next lint"
2020-11-28 15:45:01 +00:00
},
"dependencies": {
"@emotion/cache": "latest",
"@emotion/react": "latest",
"@emotion/server": "latest",
"@emotion/styled": "latest",
2023-12-26 01:24:13 +00:00
"@headlessui/react": "^1.7.17",
"@heroicons/react": "^2.1.1",
"@mui/x-tree-view": "^6.17.0",
2023-12-29 23:29:50 +00:00
"@types/node": "^20.10.5",
2023-12-30 16:42:21 +00:00
"@typescript-eslint/eslint-plugin": "^6.4.0",
"cytoscape-d3-force": "latest",
"cytoscape-node-html-label": "latest",
"d3": "latest",
"directory-tree": "latest",
2023-12-30 16:42:21 +00:00
"eslint-config-standard-with-typescript": "latest",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^16.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "latest",
"fs": "latest",
"gray-matter": "latest",
"jsnetworkx": "latest",
"mdast-util-to-string": "latest",
"next": "14.0.4",
"next-plausible": "latest",
"path": "latest",
"react": "^18",
"react-cytoscapejs": "latest",
"react-dom": "^18",
"react-folder-tree": "latest",
"rehype-prism-plus": "latest",
"rehype-react": "latest",
"rehype-stringify": "latest",
"remark": "latest",
"remark-collapse": "latest",
"remark-external-links": "latest",
"remark-highlight.js": "latest",
"remark-html": "latest",
"remark-parse": "latest",
"remark-preset-lint-markdown-style-guide": "latest",
"remark-rehype": "latest",
"remark-wiki-link": "latest",
"to-vfile": "latest",
"unified": "latest",
"unist-util-visit": "latest",
"vfile-reporter": "latest"
2020-11-28 15:45:01 +00:00
},
"devDependencies": {
2023-12-31 15:35:22 +00:00
"@types/bun": "^1.0.0",
2023-12-24 06:12:05 +00:00
"autoprefixer": "^10.4.16",
"bimap": "latest",
2023-12-31 15:35:22 +00:00
"bun-types": "latest",
"cytoscape": "latest",
2023-12-30 16:42:21 +00:00
"eslint": "^8.0.1",
"eslint-config-next": "latest",
"remark-frontmatter": "latest",
"remark-react": "latest",
"remark-stringify": "latest",
2023-12-31 15:35:22 +00:00
"uuid": "latest"
},
"resolutions": {
"react": "^18",
"react-dom": "^18",
"next": "^14"
2023-12-30 16:42:21 +00:00
},
"module": "index.ts",
"type": "module",
"peerDependencies": {
"typescript": "^5.0.0"
2020-11-28 15:45:01 +00:00
}
}