livebook/assets/package.json

73 lines
2.4 KiB
JSON
Raw Normal View History

2021-01-08 03:55:45 +08:00
{
"private": true,
2021-01-08 03:55:45 +08:00
"scripts": {
2023-05-27 15:04:52 +08:00
"deploy": "node build.js --deploy",
"watch": "node build.js --watch",
"format": "prettier --write '{js,test,css}/**/*.{js,json,css,md}' --no-error-on-unmatched-pattern",
"format-check": "prettier --check '{js,test,css}/**/*.{js,json,css,md}' --no-error-on-unmatched-pattern",
2021-02-17 06:20:23 +08:00
"test": "jest",
"test:watch": "jest --watch"
2021-01-08 03:55:45 +08:00
},
"dependencies": {
"@codemirror/autocomplete": "^6.11.1",
"@codemirror/commands": "^6.3.3",
"@codemirror/lang-css": "^6.2.1",
"@codemirror/lang-html": "^6.4.7",
"@codemirror/lang-javascript": "^6.2.1",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/lang-markdown": "^6.2.3",
"@codemirror/lang-sql": "^6.5.5",
"@codemirror/lang-xml": "^6.0.2",
"@codemirror/language": "^6.10.0",
"@codemirror/legacy-modes": "^6.3.3",
"@codemirror/lint": "^6.4.2",
"@codemirror/search": "^6.5.5",
"@codemirror/state": "^6.4.0",
"@codemirror/view": "^6.23.0",
2023-05-26 20:24:59 +08:00
"@fontsource/inter": "^5.0.1",
"@fontsource/jetbrains-mono": "^5.0.1",
"@fontsource/red-hat-text": "^5.0.1",
"@picmo/popup-picker": "^5.7.6",
"@replit/codemirror-emacs": "^6.0.1",
"@replit/codemirror-vim": "^6.1.0",
"@replit/codemirror-vscode-keymap": "^6.0.2",
"codemirror-lang-elixir": "^4.0.0",
"crypto-js": "^4.0.0",
2023-10-06 00:34:01 +08:00
"hast-util-to-text": "^4.0.0",
"hyperlist": "^1.0.0",
2022-10-01 03:35:56 +08:00
"jest": "^29.1.2",
2023-04-04 17:37:17 +08:00
"mermaid": "^10.0.2",
"morphdom": "^2.6.1",
2021-01-08 03:55:45 +08:00
"phoenix": "file:../deps/phoenix",
2021-01-08 04:16:54 +08:00
"phoenix_html": "file:../deps/phoenix_html",
"phoenix_live_view": "file:../deps/phoenix_live_view",
"picmo": "^5.7.2",
2023-10-06 00:34:01 +08:00
"rehype-katex": "^7.0.0",
"rehype-parse": "^9.0.0",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"rehype-stringify": "^10.0.0",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"remark-parse": "^11.0.0",
"remark-rehype": "^11.0.0",
2024-02-01 14:35:24 +08:00
"remixicon": "^4.1.0",
2022-12-29 20:10:28 +08:00
"scroll-into-view-if-needed": "^3.0.3",
"tailwindcss": "^3.0.8",
2024-05-10 22:42:11 +08:00
"topbar": "^3.0.0",
2023-10-06 00:34:01 +08:00
"unified": "^11.0.3",
"unist-util-remove-position": "^5.0.0",
"unist-util-visit": "^5.0.0"
2021-01-08 03:55:45 +08:00
},
"devDependencies": {
"@babel/core": "^7.22.1",
"@babel/preset-env": "^7.22.2",
2021-01-08 05:13:17 +08:00
"autoprefixer": "^10.2.0",
2024-05-10 22:42:11 +08:00
"esbuild": "^0.21.0",
2023-05-27 15:04:52 +08:00
"esbuild-style-plugin": "^1.6.2",
2021-01-08 05:13:17 +08:00
"postcss": "^8.2.3",
2024-02-01 14:35:24 +08:00
"postcss-import": "^16.0.0",
2023-10-06 00:34:01 +08:00
"prettier": "^3.0.3"
2021-01-08 03:55:45 +08:00
}
}