-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.65 KB
/
package.json
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
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "vc-inpector",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "npx serve@latest out",
"lint": "next lint",
"prettier": "prettier --write .",
"prettier:check": "prettier --check .",
"types": "tsc --noEmit",
"cypress:open": "cypress open",
"test:e2e": "start-server-and-test dev http://localhost:3000 \"cypress run --e2e\"",
"test:component": "cypress run --component",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"check": "next lint && pnpm prettier --write && pnpm tsc --noEmit && pnpm next build"
},
"dependencies": {
"@inspector": "file:src/inspector",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-navigation-menu": "^1.1.4",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.1.0",
"@radix-ui/react-tooltip": "^1.1.2",
"base64url": "^3.0.1",
"cbor": "^9.0.2",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"cose-js": "^0.9.0",
"format-to-json": "^3.0.5",
"framer-motion": "^11.3.30",
"jose": "^5.6.3",
"lucide-react": "^0.358.0",
"next": "14.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-json-pretty": "^2.2.0",
"react-markdown": "^9.0.1",
"start-server-and-test": "^2.0.3",
"tailwind-merge": "^2.2.1",
"tailwindcss-animate": "^1.0.7",
"usehooks-ts": "^3.1.0",
"vaul": "^0.9.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.3.3",
"@storybook/addon-a11y": "^8.0.10",
"@storybook/addon-essentials": "^8.0.10",
"@storybook/addon-interactions": "^8.0.10",
"@storybook/addon-links": "^8.0.10",
"@storybook/addon-onboarding": "^8.0.10",
"@storybook/blocks": "^8.0.10",
"@storybook/nextjs": "^8.0.10",
"@storybook/react": "^8.0.10",
"@storybook/test": "^8.0.10",
"@types/cose-js": "^0.8.3",
"@types/node": "^20.11.18",
"@types/react": "^18.2.55",
"@types/react-dom": "^18.2.19",
"@vitest/coverage-v8": "^1.6.0",
"autoprefixer": "^10.4.17",
"cypress": "^13.6.4",
"eslint": "^8.56.0",
"eslint-config-next": "14.1.0",
"eslint-plugin-storybook": "^0.8.0",
"husky": "^9.0.11",
"postcss": "^8.4.35",
"prettier": "3.2.5",
"prettier-plugin-tailwindcss": "^0.5.11",
"raw-loader": "^4.0.2",
"storybook": "^8.0.10",
"tailwindcss": "^3.4.1",
"typedoc": "^0.26.3",
"typescript": "^5.5.3",
"vitest": "^1.6.0"
},
"packageManager": "[email protected]"
}