-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
125 lines (125 loc) · 3.85 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "@hyperse/next.js-starter",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"analyze": "cross-env ANALYZE=true next build",
"build": "cross-env NODE_OPTIONS='--no-warnings' next build",
"build-docker": "cross-env NEXT_BUILD_ENV_OUTPUT=standalone next build",
"build:twl": "twl -p \"**/globals.css\"",
"dev": "next dev --port 8001",
"g:lint-staged-files": "lint-staged --allow-empty",
"postinstall": "yarn build:twl",
"lint": "eslint . --cache --report-unused-disable-directives --report-unused-disable-directives src",
"lint-fix": "yarn lint --fix",
"prepare": "husky",
"serve": "next start",
"start": "next start --port 8001",
"test": "run-s test:*",
"test-dev": "start-server-and-test dev http://127.0.0.1:8001 test",
"test-start": "start-server-and-test start http://127.0.0.1:8001 test",
"test-task": "vitest run",
"test:e2e": "playwright test",
"test:unit": "vitest run",
"typecheck": "tsc --project ./tsconfig.json --noEmit"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"Chrome 118",
"last 1 chrome version",
"last 1 edge version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@apollo/client": "3.11.1",
"@apollo/experimental-nextjs-app-support": "0.11.2",
"@dimjs/utils": "^2.0.2",
"@emotion/react": "^11.13.0",
"@emotion/styled": "^11.13.0",
"@hookform/resolvers": "^3.9.0",
"@hyperse-io/next-env": "^1.1.0",
"@hyperse-io/tailwind-layer": "^1.0.3",
"@mui/lab": "^5.0.0-alpha.172",
"@mui/material": "^5.16.4",
"@next/bundle-analyzer": "14.2.5",
"@radix-ui/react-accordion": "^1.2.0",
"@radix-ui/react-alert-dialog": "^1.1.1",
"@radix-ui/react-dialog": "^1.1.1",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-label": "^2.1.0",
"@radix-ui/react-slot": "^1.1.0",
"@radix-ui/react-toast": "^1.2.1",
"@tailwindcss/forms": "^0.5.7",
"@tailwindcss/typography": "^0.5.13",
"aos": "^2.3.4",
"apollo-upload-client": "18.0.1",
"autoprefixer": "^10.4.19",
"class-variance-authority": "0.7.0",
"clsx": "^2.1.1",
"cookies-next": "4.2.1",
"gql.tada": "1.8.2",
"graphql": "16.9.0",
"input-otp": "^1.2.4",
"jotai": "^2.9.1",
"lucide-react": "^0.414.0",
"material-ui-popup-state": "^5.1.2",
"next": "14.2.5",
"next-intl": "^3.17.2",
"next-recaptcha-v3": "^1.4.1",
"next-runtime-env": "^3.2.2",
"next-themes": "^0.3.0",
"overlayscrollbars": "2.9.2",
"overlayscrollbars-react": "0.5.6",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hook-form": "^7.52.1",
"react-icons": "^5.2.1",
"sharp": "^0.33.4",
"tailwind-merge": "^2.4.0",
"tailwindcss": "^3.4.6",
"usehooks-ts": "^3.1.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@0no-co/graphqlsp": "1.12.12",
"@changesets/cli": "2.27.7",
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@hyperse/eslint-config-hyperse": "^1.0.10",
"@playwright/test": "^1.45.3",
"@svgr/webpack": "^8.1.0",
"@types/aos": "3.0.7",
"@types/apollo-upload-client": "^18.0.0",
"@types/node": "^20.14.12",
"@types/react": "^18.3.3",
"autoprefixer": "^10.4.19",
"code-inspector-plugin": "^0.15.2",
"commitizen": "4.3.0",
"cross-env": "7.0.3",
"cz-conventional-changelog": "3.3.0",
"dotenv": "^16.4.5",
"eslint": "^9.7.0",
"husky": "9.1.1",
"is-ci": "3.0.1",
"lint-staged": "15.2.7",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.39",
"start-server-and-test": "^2.0.4",
"typescript": "^5.5.4",
"vitest": "^2.0.4"
},
"packageManager": "yarn@4.3.1"
}