-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 3.36 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 3.36 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "grantflow",
"version": "1.0.0",
"private": true,
"description": "GrantFlow monorepo root",
"scripts": {
"dev": "pnpm --parallel --filter './frontend' --filter './editor' dev",
"build": "pnpm --filter './frontend' --filter './editor' build",
"lint": "pnpm --parallel --filter './frontend' --filter './editor' lint",
"lint:root": "biome lint --write . && eslint . --fix",
"format": "pnpm --parallel --filter './frontend' --filter './editor' format",
"format:root": "biome format --write .",
"knip": "pnpm --parallel --filter './frontend' --filter './editor' knip",
"knip:frontend": "pnpm --filter './frontend' knip",
"knip:editor": "pnpm --filter './editor' knip",
"test": "pnpm --parallel --filter './frontend' --filter './editor' --filter 'crdt' test",
"typecheck": "pnpm --parallel --filter './frontend' --filter './editor' typecheck"
},
"keywords": [],
"author": "",
"license": "UNLICENSED",
"packageManager": "pnpm@10.28.0+sha512.05df71d1421f21399e053fde567cea34d446fa02c76571441bfc1c7956e98e363088982d940465fd34480d4d90a0668bc12362f8aa88000a64e83d0b0e47be48",
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@eslint/compat": "^2.0.1",
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@next/eslint-plugin-next": "^16.1.1",
"@playwright/test": "^1.57.0",
"@react-email/render": "^2.0.2",
"@storybook/addon-a11y": "10.1.11",
"@storybook/addon-docs": "^10.1.11",
"@storybook/addon-onboarding": "10.1.11",
"@storybook/addon-vitest": "10.1.11",
"@storybook/react-vite": "^10.1.11",
"@storybook/test": "^8.6.15",
"@tailwindcss/postcss": "^4.1.18",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^25.0.5",
"@types/pg": "^8.16.0",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.52.0",
"@typescript-eslint/parser": "^8.52.0",
"@vitejs/plugin-react": "^5.1.2",
"@vitest/browser": "^4.0.16",
"@vitest/coverage-v8": "^4.0.16",
"autoprefixer": "^10.4.23",
"cross-env": "^10.1.0",
"drizzle-kit": "^0.31.8",
"eslint": "^9.39.2",
"eslint-config-biome": "^2.1.3",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-x": "^4.16.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-markdown": "^5.1.0",
"eslint-plugin-n": "17.23.1",
"eslint-plugin-paths": "^1.1.0",
"eslint-plugin-perfectionist": "^5.3.1",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-perf": "^3.3.3",
"eslint-plugin-react-refresh": "^0.4.26",
"eslint-plugin-sonarjs": "^3.0.5",
"eslint-plugin-storybook": "^10.1.11",
"eslint-plugin-unicorn": "62.0.0",
"eslint-plugin-unused-imports": "^4.3.0",
"eslint-plugin-vitest": "^0.5.4",
"globals": "^17.0.0",
"interface-forge": "^2.6.6",
"jsdom": "^27.4.0",
"knip": "^5.80.2",
"pino-pretty": "^13.1.3",
"playwright": "^1.57.0",
"postcss": "^8.5.6",
"sass-embedded": "^1.97.2",
"storybook": "^10.1.11",
"tailwindcss": "^4.1.18",
"tw-animate-css": "^1.4.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.52.0",
"vite": "^7.3.1",
"vite-plugin-dts": "^4.5.4",
"vite-plugin-lib-inject-css": "^2.2.2",
"vite-tsconfig-paths": "^6.0.4",
"vitest": "^4.0.16"
}
}