-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
108 lines (108 loc) · 3.93 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "grpc-forms",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "tsx index.ts --dev",
"build": "vite build --outDir dist",
"preview": "cross-env NODE_ENV=production tsx index.ts",
"typecheck": "tsc --noEmit",
"lint": "npm run lint:eslint && npm run lint:stylelint",
"lint:eslint": "eslint . --ext .ts,.tsx --cache",
"lint:stylelint": "stylelint '**/*.css' --cache",
"prettier": "prettier --check \"**/*.{ts,tsx}\"",
"prettier:write": "prettier --write \"**/*.{ts,tsx}\"",
"vitest": "vitest run",
"vitest:watch": "vitest",
"test": "npm run typecheck && npm run prettier && npm run lint && npm run vitest && npm run build",
"storybook": "storybook dev -p 6006",
"storybook:build": "storybook build",
"postinstall": "patch-package",
"examples:protoc": "./examples/protoc.sh",
"example:dev": "tsx examples/grpc-forms-example/index.ts --dev",
"example:build": "bun run example:build:client && bun run example:build:server",
"example:build:client": "vite build --config examples/grpc-forms-example/vite.config.ts --outDir ../dist/client --ssrManifest",
"example:build:server": "vite build --config examples/grpc-forms-example/vite.config.ts --outDir ../dist/server --ssr ../index.ts"
},
"trustedDependencies": [
"grpc-tools",
"@protobuf-ts/plugin"
],
"dependencies": {
"@fastify/vite": "^5.0.5",
"@hookform/resolvers": "^3.3.4",
"@protobuf-ts/grpc-transport": "^2.9.3",
"@protobuf-ts/runtime": "^2.9.3",
"@protobuf-ts/runtime-rpc": "^2.9.3",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-separator": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-tabs": "^1.0.4",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"devalue": "^4.3.2",
"fastify": "^4.24.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.49.3",
"react-router-dom": "^6.18.0",
"tailwind-merge": "^2.2.0",
"tailwindcss-animate": "^1.0.7",
"tsx": "^4.6.2"
},
"devDependencies": {
"@hookform/devtools": "^4.3.1",
"@protobuf-ts/plugin": "^2.9.3",
"@storybook/addon-essentials": "^7.6.10",
"@storybook/addon-interactions": "^7.6.10",
"@storybook/addon-links": "^7.6.10",
"@storybook/blocks": "^7.6.10",
"@storybook/react": "^7.6.10",
"@storybook/react-vite": "^7.6.10",
"@storybook/testing-library": "^0.2.2",
"@testing-library/dom": "^9.3.3",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.5.1",
"@types/react": "^18.2.36",
"@types/react-dom": "^18.2.14",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"@vitejs/plugin-react": "^4.1.1",
"autoprefixer": "^10.4.17",
"eslint": "^8.53.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jsx-a11y": "^6.7.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"eslint-plugin-storybook": "^0.6.15",
"grpc-tools": "^1.12.4",
"identity-obj-proxy": "^3.0.0",
"jsdom": "^22.1.0",
"patch-package": "^8.0.0",
"pino-pretty": "^10.2.3",
"postcss": "^8.4.33",
"prettier": "^3.0.3",
"prettier-plugin-organize-imports": "^3.2.4",
"prop-types": "^15.8.1",
"protobufjs": "^7.2.5",
"storybook": "^7.6.10",
"storybook-css-modules-preset": "^1.1.1",
"storybook-dark-mode": "^3.0.1",
"stylelint": "^15.11.0",
"stylelint-config-standard-scss": "^11.1.0",
"tailwindcss": "^3.4.1",
"typescript": "^5.2.2",
"vite": "^4.5.2",
"vite-plugin-dts": "^3.7.1",
"vite-tsconfig-paths": "^4.2.1",
"vitest": "^0.34.6"
}
}