-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.67 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
85
86
{
"name": "@autoinvent/conveyor-admin",
"type": "module",
"version": "1.0.0",
"description": "GraphiQL for Magql",
"license": "BlueOak-1.0.0",
"author": "Moebius Solutions",
"files": [
"dist"
],
"main": "./dist/conveyor-admin.umd.cjs",
"module": "./dist/conveyor-admin.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/conveyor-admin.js",
"require": "./dist/conveyor-admin.umd.cjs"
},
"./index.css": {
"import": "./dist/styles/index.css",
"require": "./dist/styles/index.css"
}
},
"scripts": {
"build": "pnpm tailwind && tsc && vite build",
"dev:tailwind": "concurrently --kill-others \"pnpm:dev\" \"pnpm:tailwind --watch\"",
"dev": "cd dev && vite",
"storybook": "storybook dev -p 6006",
"tailwind": "tailwindcss -i ./src/styles/tailwind.css -o ./public/styles/index.css",
"format": "pnpx @biomejs/biome format --write *",
"lint": "pnpx @biomejs/biome lint --apply *"
},
"dependencies": {
"@autoinvent/conveyor": "file:autoinvent-conveyor-1.0.0.tgz",
"@hookform/error-message": "^2.0.1",
"@radix-ui/react-accordion": "^1.1.2",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-tabs": "^1.0.4",
"@tanstack/react-query": "^5.40.0",
"@tanstack/react-router": "^1.28.4",
"@tanstack/react-store": "^0.3.1",
"lucide-react": "^0.372.0",
"react-helmet": "^6.1.0",
"react-hook-form": "^7.51.4",
"react-icons": "^4.10.1",
"react-use": "^17.4.0",
"tailwind-merge": "^2.3.0"
},
"peerDependencies": {
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@babel/core": "^7.24.0",
"@biomejs/biome": "1.7.1",
"@chromatic-com/storybook": "^1.4.0",
"@storybook/addon-essentials": "^8.1.3",
"@storybook/addon-interactions": "^8.1.3",
"@storybook/addon-links": "^8.1.3",
"@storybook/addon-onboarding": "^8.1.3",
"@storybook/addon-themes": "^8.1.3",
"@storybook/blocks": "^8.1.3",
"@storybook/builder-vite": "^8.1.3",
"@storybook/react": "^8.1.3",
"@storybook/react-vite": "^8.1.3",
"@storybook/test": "^8.1.3",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@types/react-helmet": "^6.1.11",
"@vitejs/plugin-react": "^4.2.1",
"concurrently": "^8.2.2",
"graphql": "^16.8.1",
"graphql-request": "^7.0.1",
"lefthook": "^1.6.12",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"storybook": "^8.1.3",
"tailwindcss": "^3.4.3",
"typescript": "5.1.6",
"vite": "^5.2.11",
"vite-plugin-dts": "^3.9.1"
}
}