-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.46 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
{
"name": "cesar-monorepo",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"lint": "turbo lint",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"clean": "turbo run clean && rm -r node_modules bun.lockb",
"generate": "turbo run generate",
"publish-packages": "turbo run build lint test && changeset version && changeset publish"
},
"dependencies": {
"@apollo/experimental-nextjs-app-support": "^0.11.8",
"@changesets/cli": "^2.27.12",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"apollo-upload-client": "^18.0.1",
"babel-plugin-react-compiler": "^19.0.0-beta-e552027-20250112",
"graphql-tag": "^2.12.6",
"object-path": "^0.11.8",
"prismjs": "^1.29.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"recursive-iterator": "^3.3.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.4",
"@workspace/eslint-config": "workspace:*",
"@workspace/typescript-config": "workspace:*",
"eslint-plugin-unused-imports": "^4.1.4",
"prettier": "^3.4.2",
"tsup": "^8.3.6",
"turbo": "^2.4.0",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]",
"workspaces": [
"apps/*",
"packages/*"
],
"patchedDependencies": {
"@faustwp/[email protected]": "patches/@[email protected]",
"@faustwp/[email protected]": "patches/@faustwp%[email protected]"
}
}