-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.41 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
{
"name": "solid-file-manager",
"version": "0.1.0",
"private": true,
"license": "MIT OR Apache-2.0",
"scripts": {
"dev": "next dev --port=3001",
"build": "npm run build:next",
"build:next": "next build",
"start": "next start",
"start:dev": "concurrently \"npm run start:css\" \"npm run dev\"",
"start:css": "npx @solid/community-server --port 3000 --loggingLevel info --config .cssconfig.json --rootFilePath data/ --seedConfig seed-config.json",
"lint": "eslint"
},
"dependencies": {
"@base-ui/react": "^1.7.0",
"@inrupt/solid-client": "^1.23.1",
"@inrupt/solid-client-authn-browser": "^3.1.1",
"@ldo/solid-react": "^1.0.0-alpha.33",
"@solid/object": "^0.8.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"jszip": "^3.10.1",
"lucide-react": "^1.33.0",
"n3": "^2.0.1",
"next": "16.0.7",
"next-themes": "^0.4.6",
"react": "19.2.1",
"react-dom": "19.2.1",
"shadcn": "^4.21.0",
"solid-react-component": "^0.2.8",
"tailwind-merge": "^3.6.0",
"tw-animate-css": "^1.4.0"
},
"devDependencies": {
"@solid/community-server": "^8.0.0-alpha.1",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"concurrently": "^9",
"eslint": "^9",
"eslint-config-next": "16.0.7",
"nodemon": "^3",
"tailwindcss": "^4",
"typescript": "^5"
}
}