-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 2.26 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"private": true,
"sideEffects": false,
"scripts": {
"deploy": "fly deploy --remote-only",
"build": "run-s \"build:*\"",
"build:css": "npm run generate:css -- --minify",
"build:remix": "remix build",
"dev": "run-p \"dev:*\"",
"dev:css": "npm run generate:css -- --watch",
"dev:remix": "remix dev",
"generate:css": "npx tailwindcss -o ./app/tailwind.css",
"start": "remix-serve build",
"lint": "eslint --fix ./app"
},
"dependencies": {
"@codemirror/autocomplete": "^6.3.0",
"@codemirror/basic-setup": "^0.20.0",
"@codemirror/commands": "^6.1.2",
"@codemirror/lang-markdown": "^6.0.2",
"@codemirror/language": "^6.2.1",
"@codemirror/search": "^6.2.1",
"@codemirror/state": "^6.1.2",
"@codemirror/view": "^6.3.1",
"@dnd-kit/core": "^6.0.5",
"@dnd-kit/sortable": "^7.0.1",
"@dnd-kit/utilities": "^3.2.0",
"@headlessui/react": "^1.7.2",
"@heroicons/react": "^2.0.11",
"@lezer/highlight": "^1.1.1",
"@remix-run/node": "1.19.3",
"@remix-run/react": "1.19.3",
"@remix-run/serve": "1.19.3",
"@thoughtbot/tailwindcss-aria-attributes": "^0.2.0",
"clsx": "^1.2.1",
"cm6-theme-basic-dark": "^0.2.0",
"cm6-theme-basic-light": "^0.2.0",
"debounce": "^1.2.1",
"front-matter": "^4.0.2",
"ioredis": "^5.3.2",
"is-binary-path": "^2.1.0",
"markdown-it": "^13.0.1",
"markdown-it-anchor": "^8.6.7",
"markdown-it-emoji": "^2.0.2",
"markdown-it-table-of-contents": "^0.6.0",
"mime": "^3.0.0",
"parse-link-header": "^2.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tiny-invariant": "^1.2.0"
},
"devDependencies": {
"@remix-run/dev": "1.19.3",
"@remix-run/eslint-config": "1.19.3",
"@tailwindcss/forms": "^0.5.3",
"@tailwindcss/typography": "^0.5.7",
"@types/debounce": "^1.2.1",
"@types/markdown-it": "^12.2.3",
"@types/markdown-it-emoji": "^2.0.2",
"@types/marked": "^4.0.7",
"@types/mime": "^3.0.1",
"@types/parse-link-header": "^2.0.0",
"@types/react": "^18.0.15",
"@types/react-beautiful-dnd": "^13.1.2",
"@types/react-dom": "^18.0.6",
"eslint": "^8.23.1",
"npm-run-all": "^4.1.5",
"tailwindcss": "^3.1.8",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=14"
}
}