-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
80 lines (80 loc) · 2.69 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
{
"name": "colne",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "next lint && yarn run prettier:check",
"prettier": "prettier --write --ignore-path .gitignore './**/*.{js,jsx,ts,tsx,json,css,graphql}'",
"prettier:check": "prettier --check --ignore-path .gitignore './**/*.{js,jsx,ts,tsx,json,css,graphql}'",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"typecheck": "tsc --noEmit",
"codegen": "graphql-codegen --config codegen.ts && prettier --write graphql/generated/client.ts"
},
"dependencies": {
"@cloudscape-design/components": "^3.0.337",
"@cloudscape-design/design-tokens": "^3.0.20",
"@cloudscape-design/global-styles": "^1.0.11",
"@sentry/nextjs": "^8.0.0",
"@storybook/test": "^8.0.0",
"cookie": "^0.7.0",
"dayjs": "^1.11.9",
"encoding": "^0.1.13",
"graphql": "^16.7.1",
"graphql-request": "^7.0.0",
"jotai": "^2.10.1",
"next": "15.1.0",
"nextjs-toploader": "^3.0.0",
"nuqs": "^2.1.1",
"react": "19.0.0",
"react-dom": "19.0.0",
"react-hook-form": "^7.45.1",
"react-hot-toast": "^2.4.1",
"react-is": "19.0.0",
"recharts": "^2.13.0",
"styled-components": "^6.0.4",
"yup": "^1.2.0"
},
"resolutions": {
"cross-fetch": "^4.0.0",
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]",
"react-is": "19.0.0"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@graphql-codegen/cli": "5.0.3",
"@graphql-codegen/client-preset": "4.5.1",
"@graphql-codegen/typed-document-node": "^5.0.1",
"@graphql-codegen/typescript": "^4.0.1",
"@graphql-codegen/typescript-graphql-request": "^6.0.0",
"@graphql-codegen/typescript-operations": "^4.0.1",
"@storybook/addon-actions": "^8.0.0",
"@storybook/addon-essentials": "^8.0.0",
"@storybook/addon-interactions": "^8.0.0",
"@storybook/addon-links": "^8.0.0",
"@storybook/cli": "^8.0.0",
"@storybook/nextjs": "^8.0.0",
"@storybook/react": "^8.0.0",
"@types/cookie": "^0.6.0",
"@types/node": "22.10.2",
"@types/react": "npm:[email protected]",
"@types/react-dom": "npm:[email protected]",
"@types/styled-components": "^5.1.26",
"babel-loader": "^9.1.3",
"babel-plugin-styled-components": "^2.1.4",
"eslint": "9.17.0",
"eslint-config-next": "15.1.0",
"eslint-plugin-storybook": "^0.11.0",
"prettier": "3.4.2",
"storybook": "^8.0.0",
"storybook-dark-mode": "^4.0.0",
"ts-node": "^10.9.1",
"typescript": "5.7.2"
},
"packageManager": "[email protected]"
}