-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.24 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.24 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
{
"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": {
"@heroicons/react": "^2.2.0",
"@inrupt/solid-client": "^1.23.1",
"@inrupt/solid-client-authn-browser": "^3.1.1",
"@ldo/solid-react": "^1.0.0-alpha.33",
"@rdfjs/wrapper": "^0.33.0",
"jszip": "^3.10.1",
"n3": "^2.0.1",
"next": "16.0.7",
"react": "19.2.1",
"react-dom": "19.2.1",
"react-hot-toast": "^2.6.0",
"solid-react-component": "^0.2.2"
},
"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"
}
}