-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (100 loc) · 2.57 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
{
"name": "@nebuloid/frontend",
"private": false,
"license": "MIT",
"version": "0.0.0",
"description": "The frontend for my portfolio.",
"keywords": [
"React",
"ReactJS",
"Next",
"NextJS",
"TypeScript",
"portfolio",
"personal",
"website"
],
"homepage": "https://nebuloid.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/nebuloid-blog/frontend.git"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/nebuloid-blog/frontend/issues"
},
"author": {
"name": "Nolan Kovacik",
"email": "[email protected]",
"url": "https://nebuloid.dev/"
},
"contributors": [
{
"name": "Frances Coronel",
"email": "[email protected]",
"url": "https://francescoronel.com/"
}
],
"engines": {
"node": ">=22.12"
},
"packageManager": "[email protected]",
"type": "module",
"main": "",
"files": [ ],
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"storybook": "storybook dev public -p 6006",
"build-storybook": "storybook build",
"indent": "replace-in-files --string=' ' --replacement='\t'",
"generate":
"yarn generate:code && yarn generate:lint --fix; yarn generate:indent",
"generate:indent":
"yarn indent ./src/**/generated/**/*.ts",
"generate:code":
"echo \nGenerating... && graphql-codegen --config .codegenrc.json",
"generate:lint":
"echo \nLinting... && eslint ./src/**/generated/**/*.ts --no-ignore"
},
"dependencies": {
"@formspree/react": "^2.5.1",
"@tanstack/react-query": "^5.65.1",
"graphql": "^16.10.0",
"graphql-request": "^7.1.2",
"next": "^15.1.6",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-hook-form": "^7.54.2",
"rehype": "^13.0.2",
"rehype-parse": "^9.0.1",
"rehype-react": "^8.0.0",
"rehype-sanitize": "^6.0.0",
"rehype-shift-heading": "^2.0.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.4",
"@graphql-codegen/client-preset": "^4.6.0",
"@storybook/addon-essentials": "^8.5.2",
"@storybook/addon-interactions": "^8.5.2",
"@storybook/addon-links": "^8.5.2",
"@storybook/nextjs": "^8.5.2",
"@storybook/react": "^8.5.2",
"@stylistic/eslint-plugin": "^2.13.0",
"@types/node": "^22.12.0",
"@types/react": "^19.0.8",
"@types/react-dom": "^19.0.3",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"eslint": "^9.19.0",
"eslint-config-next": "^15.1.6",
"eslint-config-tabbify": "^0.3.2",
"globals": "^15.14.0",
"replace-in-files-cli": "^3.0.0",
"sass": "^1.83.4",
"storybook": "^8.5.2",
"typescript": "^5.7.3"
}
}