-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
57 lines (57 loc) · 1.61 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
{
"name": "portfolio-next",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev --turbo -p 3040",
"build": "next build",
"start": "next start",
"lint": "next lint",
"gen": "graphql-codegen --config codegen.yml"
},
"dependencies": {
"@formspree/react": "^2.5.1",
"@next/third-parties": "15.0.0-rc.1",
"babel-plugin-react-compiler": "0.0.0-experimental-592953e-20240517",
"clsx": "^2.0.0",
"formik": "^2.4.4",
"next": "15.0.0-rc.1",
"next-themes": "^0.2.1",
"react": "19.0.0-rc-65a56d0e-20241020",
"react-dom": "19.0.0-rc-65a56d0e-20241020",
"react-google-recaptcha": "^2.1.0",
"server-only": "^0.0.1",
"tailwind-merge": "^2.3.0",
"yup": "^1.2.0"
},
"devDependencies": {
"@graphql-codegen/cli": "3.2.1",
"@graphql-codegen/typescript": "3.0.1",
"@graphql-codegen/typescript-operations": "^3.0.4",
"@octokit/graphql-schema": "^13.10.0",
"@types/node": "^18.16.19",
"@types/react": "npm:types-react@19.0.0-rc.1",
"@types/react-dom": "npm:types-react-dom@19.0.0-rc.1",
"@types/react-google-recaptcha": "^2.1.5",
"autoprefixer": "^10.4.14",
"eslint": "^8.44.0",
"eslint-config-next": "15.0.0-rc.1",
"eslint-config-prettier": "^8.8.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"postcss": "^8.4.25",
"tailwindcss": "^3.3.2",
"typescript": "^5.2.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"pnpm": {
"overrides": {
"@types/react": "npm:types-react@19.0.0-rc.1",
"@types/react-dom": "npm:types-react-dom@19.0.0-rc.1"
}
}
}