-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.03 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 2.03 KB
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
{
"name": "onlyworlds-write-tool",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "astro dev",
"build": "astro build && node scripts/post-build.js",
"preview": "astro preview",
"astro": "astro",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx,.astro",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx,.astro --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "astro check",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"dependencies": {
"@astrojs/react": "^4.3.0",
"@astrojs/tailwind": "^6.0.2",
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@headlessui/react": "^2.2.7",
"@heroicons/react": "^2.2.0",
"@mdxeditor/editor": "^3.42.0",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"astro": "^5.11.0",
"fuse.js": "^7.1.0",
"html2canvas": "^1.4.1",
"jspdf": "^3.0.1",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-force-graph-2d": "^1.28.0",
"react-force-graph-3d": "^1.28.0",
"react-hot-toast": "^2.5.2",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.6.3",
"remark-gfm": "^4.0.1",
"tailwindcss": "^3.4.17",
"three": "^0.179.1",
"three-spritetext": "^1.10.0",
"use-debounce": "^10.0.5",
"zustand": "^5.0.6"
},
"devDependencies": {
"@astrojs/check": "^0.9.4",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@types/jspdf": "^1.3.3",
"@types/react-router-dom": "^5.3.3",
"@types/three": "^0.178.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitejs/plugin-react": "^4.6.0",
"eslint": "^9.0.0",
"eslint-plugin-astro": "^1.0.0",
"eslint-plugin-jsx-a11y": "^6.9.0",
"jsdom": "^26.1.0",
"prettier": "^3.0.0",
"prettier-plugin-astro": "^0.14.0",
"sharp": "^0.34.3",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
}
}