-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.37 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.37 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
{
"name": "@syncbase/web",
"packageManager": "yarn@3.2.4",
"private": true,
"scripts": {
"dev": "concurrently -n \"next,graphql\" -c \"bgBlack,bgMagenta\" \"next dev\" \"graphql-codegen --watch\"",
"build": "next build",
"start": "next start",
"storybook": "start-storybook -p 6006",
"codegencheck": "graphql-codegen --check",
"test": "playwright test --config=tests/playwright.config.ts",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@headlessui/react": "^1.7.3",
"@hookform/resolvers": "^2.9.10",
"@hookstate/core": "^3.0.13",
"@netlify/classnames-template-literals": "^1.0.3",
"@urql/exchange-graphcache": "^5.0.2",
"graphql": "^15.8.0",
"next": "^13.0.0",
"next-i18next": "^12.1.0",
"next-urql": "^4.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.38.0",
"react-hot-toast": "^2.4.0",
"react-is": "^18.2.0",
"urql": "^3.0.3",
"zod": "^3.19.1"
},
"devDependencies": {
"@graphql-codegen/cli": "^2.13.7",
"@graphql-codegen/typed-document-node": "^2.3.5",
"@graphql-codegen/typescript": "2.7.5",
"@graphql-codegen/typescript-operations": "2.5.5",
"@graphql-codegen/typescript-urql-graphcache": "^2.4.2",
"@playwright/test": "^1.27.1",
"@storybook/addon-a11y": "^6.5.12",
"@storybook/addon-essentials": "^6.5.12",
"@storybook/addon-interactions": "^6.5.12",
"@storybook/addon-postcss": "^2.0.0",
"@storybook/builder-webpack5": "^6.5.12",
"@storybook/jest": "^0.0.10",
"@storybook/manager-webpack5": "^6.5.12",
"@storybook/react": "^6.5.12",
"@storybook/testing-library": "^0.0.13",
"@types/node": "^18.11.3",
"@types/react": "^18.0.21",
"@types/react-dom": "^18.0.6",
"autoprefixer": "^10.4.12",
"concurrently": "^7.5.0",
"postcss": "^8.4.18",
"tailwindcss": "^3.2.1",
"typescript": "^4.8.4"
},
"codegen": {
"schema": "../server/schema.graphql",
"documents": "src/graphql/**/*.graphql",
"generates": {
"./src/graphql/generated.ts": {
"config": {
"defaultScalarType": "string"
},
"plugins": [
"typescript",
"typescript-operations",
"typed-document-node",
"typescript-urql-graphcache"
]
}
}
},
"postcss": {
"plugins": {
"tailwindcss": {},
"autoprefixer": {}
}
}
}