forked from TuanManhCao/digital-garden
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 2.08 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
{
"name": "volglass",
"version": "0.4.9",
"private": true,
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "pnpm run build:kotlin && next dev",
"build": "pnpm run build:kotlin && pnpm run build:next",
"buildnd": "pnpm run build:kotlinnd && pnpm run build:next",
"build:next": "next build",
"build:kotlin": "cd kotlin && ./gradlew build --stacktrace",
"build:kotlinnd": "cd kotlin && ./gradlew build --stacktrace --no-daemon",
"start": "next start",
"deploy": "pnpm build && git add . && git commit -m '...' && git push",
"format": "pnpm biome check --apply src *.js",
"lint": "pnpm biome check src *.js",
"export": "next export"
},
"dependencies": {
"@emotion/cache": "latest",
"@emotion/react": "latest",
"@emotion/server": "latest",
"@emotion/styled": "latest",
"@mui/icons-material": "latest",
"@mui/material": "latest",
"@mui/x-tree-view": "latest",
"@types/wanakana": "^5.0.0",
"directory-tree": "^3.2.2",
"fs": "^0.0.1-security",
"fuse.js": "^6.6.2",
"hast-util-to-html": "^9.0.0",
"jotai": "^2.0.1",
"katex": "^0.16.4",
"mermaid": "^10.0.2",
"natural-compare": "^1.4.0",
"next": "^13.0.0",
"path": "^0.12.7",
"react": "^18.2.0",
"react-cytoscapejs": "^2.0.0",
"react-dom": "^18.2.0",
"reactflow": "^11.6.1",
"refractor": "^4.8.1",
"ts-pattern": "^5.0.0",
"volglass-backend": "link:kotlin/build/dist/js/productionLibrary",
"wanakana": "^5.0.2"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/babel__core": "^7.20.0",
"@types/cytoscape": "^3.19.9",
"@types/d3": "^7.0.0",
"@types/katex": "^0.16.0",
"@types/natural-compare": "^1.4.3",
"@types/node": "^20.0.0",
"@types/react": "^18.0.27",
"@types/react-cytoscapejs": "^1.2.2",
"@types/react-dom": "^18.0.11",
"@types/unist": "^3.0.0",
"@types/uuid": "^9.0.0",
"autoprefixer": "^10.4.13",
"cytoscape": "^3.17.0",
"postcss": "^8.4.21",
"tailwindcss": "^3.2.4",
"typescript": "^5.0.0"
},
"packageManager": "pnpm@8.15.9"
}