-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·71 lines (71 loc) · 1.96 KB
/
package.json
File metadata and controls
executable file
·71 lines (71 loc) · 1.96 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
69
70
71
{
"type": "module",
"name": "random-tools",
"version": "0.1.0",
"packageManager": "pnpm@10.2.1",
"private": true,
"scripts": {
"dev": "next dev --turbo",
"start": "npx serve out",
"lint": "next lint",
"build": "next build",
"typecheck": "tsx ./typecheck.ts"
},
"engines": {
"node": ">=22.0.0"
},
"dependencies": {
"@bprogress/next": "^3.2.12",
"@eslint/compat": "^1.2.9",
"@eslint/js": "^9.26.0",
"@floating-ui/react": "^0.27.8",
"@fortawesome/fontawesome-svg-core": "^6.7.2",
"@fortawesome/free-brands-svg-icons": "^6.7.2",
"@fortawesome/free-regular-svg-icons": "^6.7.2",
"@fortawesome/free-solid-svg-icons": "^6.7.2",
"@fortawesome/react-fontawesome": "^0.2.2",
"@headlessui/react": "^2.2.2",
"@mantine/core": "^7.17.7",
"@mantine/notifications": "^7.17.7",
"@next/eslint-plugin-next": "^15.3.1",
"@nimpl/classnames-minifier": "^4.0.0",
"@tabler/icons-react": "^3.31.0",
"@types/jsdom": "^21.1.7",
"@types/node": "22.15.3",
"@types/react": "^19.1.2",
"@types/react-dom": "^19.1.3",
"babel-plugin-react-compiler": "19.1.0-rc.1",
"client-only": "^0.0.1",
"eslint": "^9.26.0",
"eslint-config-next": "^15.3.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-compiler": "19.1.0-rc.1",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^16.0.0",
"next": "^15.3.1",
"react": "~19.1.0",
"react-dom": "~19.1.0",
"react-fontawesome": "^1.7.1",
"react-markdown": "^10.1.0",
"remark-breaks": "^4.0.0",
"sass": "^1.87.0",
"server-only": "^0.0.1",
"typescript": "^5.8.3",
"typescript-eslint": "^8.31.1",
"unplugin-auto-import": "^19.1.2",
"vitest": "^3.1.2",
"yaml": "^2.7.1",
"zod": "4.0.0-beta.20250430T185432"
},
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",
"esbuild",
"sharp"
]
},
"devDependencies": {
"serve": "^14.2.4",
"tsx": "^4.19.4"
}
}