-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.42 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.42 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
{
"name": "ecc-docs",
"private": true,
"description": "ECC Cloud Component documentation",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"format:check": "prettier --check ./**/*.{md,mdx,ts,tsx,js,jsx}",
"format": "prettier --write ./**/*.{md,mdx,ts,tsx,js,jsx}",
"lint": "npx eslint .",
"lint:fix": "npx eslint --fix",
"clean": "rm -rf dist node_modules .next"
},
"dependencies": {
"@elixir-cloud/cloud-registry": "*",
"@elixir-cloud/design": "*",
"@elixir-cloud/service-registry": "*",
"@elixir-cloud/trs": "*",
"@elixir-cloud/trs-filer": "*",
"@elixir-cloud/wes": "*",
"@lit-labs/nextjs": "^0.2.3",
"@next/font": "^14.2.5",
"@react-three/drei": "^9.102.6",
"@react-three/fiber": "^8.15.19",
"@remixicon/react": "^4.2.0",
"clsx": "^2.1.0",
"motion": "^12.19.1",
"next": "^15.5.10",
"nextra": "^2.13.4",
"nextra-theme-docs": "^2.13.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwind-merge": "^2.2.2",
"three": "^0.162.0",
"three-globe": "^2.31.0"
},
"devDependencies": {
"@elixir-cloud/eslint-config": "*",
"@types/node": "18.11.10",
"autoprefixer": "^10.4.18",
"cspell": "^8.6.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-mdx": "^3.1.5",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"typescript": "*"
}
}