-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
41 lines (41 loc) · 1.17 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
{
"name": "convex-web",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"server": "npx shadow-cljs server",
"dev": "npx shadow-cljs watch :main :test",
"app:watch": "npx shadow-cljs watch :main",
"app:release": "npx shadow-cljs release main",
"styles:watch": "npx tailwindcss --output src/main/resources/public/css/styles.css --watch",
"styles:release": "npx tailwindcss --output src/main/resources/public/css/styles.css"
},
"dependencies": {
"@headlessui/react": "^1.7.16",
"@heroicons/react": "^1.0.5",
"@radix-ui/react-tooltip": "^1.0.7",
"@types/react": "^17.0.33",
"codemirror": "^5.65.14",
"highlight.js": "^11.2.0",
"jdenticon": "^3.2.0",
"qrcode.react": "^3.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-highlight.js": "^1.0.7",
"react-markdown": "^8.0.7",
"react-resizable": "^3.0.5",
"react-tippy": "^1.4.0",
"timeago.js": "^4.0.2"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.9",
"shadow-cljs": "^2.26.2",
"tailwindcss": "^3.3.3"
},
"overrides": {
"react-highlight.js": {
"react": "$react",
"react-dom": "$react-dom"
}
}
}