-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.7 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 2.7 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
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
{
"private": true,
"type": "module",
"scripts": {
"lint": "biome lint app/frontend",
"format": "biome format --write app/frontend",
"check": "biome check app/frontend",
"test": "vitest run --project unit",
"test:unit": "vitest run --project unit",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:storybook": "vitest --project=storybook --run",
"test:storybook:update": "vitest --project=storybook --run -u",
"graphql:schema": "bundle exec rails runner \"File.write('tmp/schema.graphql', ::LookingForJobSchema.to_definition)\"",
"graphql:schema:watch": "chokidar 'app/graphql/**/*.rb' -c 'npm run graphql:schema' --initial",
"graphql:types": "npm run graphql:schema && graphql-codegen --config codegen.ts",
"graphql:types:watch": "chokidar 'app/frontend/**/*.{ts,tsx}' -c 'npm run graphql:types' --initial",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"postinstall": "patch-package"
},
"devDependencies": {
"@biomejs/biome": "2.4.13",
"@graphql-codegen/cli": "^6.3.1",
"@graphql-codegen/typed-document-node": "^6.1.8",
"@graphql-codegen/typescript": "^5.0.10",
"@graphql-codegen/typescript-operations": "^5.1.0",
"@storybook/addon-vitest": "^10.3.5",
"@storybook/react": "^10.3.5",
"@storybook/react-vite": "^10.3.5",
"@tailwindcss/vite": "^4.2.4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/rails__actioncable": "^8.0.3",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/browser": "^4.1.5",
"@vitest/browser-playwright": "^4.1.5",
"@vitest/coverage-v8": "^4.1.5",
"@vitest/ui": "^4.1.5",
"chokidar-cli": "^3.0.0",
"jsdom": "^27.0.1",
"patch-package": "^8.0.1",
"playwright": "^1.60.0",
"rxjs": "^7.8.2",
"shadcn": "^4.5.0",
"storybook": "^10.3.5",
"tailwindcss": "^4.2.4",
"typescript": "^6.0.3",
"vite": "^8.0.10",
"vite-plugin-ruby": "^5.2.1",
"vitest": "^4.1.5"
},
"dependencies": {
"@apollo/client": "^4.1.9",
"@base-ui/react": "^1.4.1",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-slot": "^1.2.4",
"@rails/actioncable": "^8.1.300",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"graphql": "^16.13.2",
"graphql-ruby-client": "^1.14.9",
"lucide-react": "^0.577.0",
"radix-ui": "^1.4.3",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"react-icons": "^5.6.0",
"react-router": "^7.14.2",
"simple-icons": "^16.19.0",
"tailwind-merge": "^3.5.0"
}
}