Nicole Tietz-Sokolskaya
e0653e4bdd
This is a big dump of a lot of code, mostly making it so that: - we have a key-value store - we can create/save/load projects and documents - there's a sidebar layout with some placeholders we may or may not need - other stuff I forgot Reviewed-on: #1
26 lines
910 B
JSON
26 lines
910 B
JSON
{
|
|
"devDependencies": {
|
|
"@tailwindcss/forms": "^0.5.7",
|
|
"@tailwindcss/typography": "^0.5.13",
|
|
"daisyui": "^4.10.5",
|
|
"esbuild": "0.21.1",
|
|
"tailwindcss": "^3.4.3"
|
|
},
|
|
"scripts": {
|
|
"build": "esbuild frontend/main.ts --bundle --outfile=static/main.js --target=es2017",
|
|
"build-watch": "esbuild frontend/main.ts --bundle --outfile=static/main.js --target=es2017 --watch",
|
|
"css-watch": "tailwindcss -i ./frontend/main.css -o ./static/style.css --watch",
|
|
"css": "tailwindcss -i ./frontend/main.css -o ./static/style.css"
|
|
},
|
|
"dependencies": {
|
|
"@milkdown/components": "^7.3.6",
|
|
"@milkdown/core": "^7.3.6",
|
|
"@milkdown/plugin-listener": "^7.3.6",
|
|
"@milkdown/preset-commonmark": "^7.3.6",
|
|
"@milkdown/preset-gfm": "^7.3.6",
|
|
"@milkdown/theme-nord": "^7.3.6",
|
|
"@prosemirror-adapter/lit": "^0.2.6",
|
|
"clsx": "^2.1.1",
|
|
"tailwindcss": "^3.4.3"
|
|
}
|
|
}
|