-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.05 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.05 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
{
"name": "fontdue-example-next",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "run-p next-dev codegen",
"next-dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"codegen": "DOTENV_CONFIG_PATH=.env.local graphql-codegen -r dotenv/config --watch"
},
"dependencies": {
"fontdue-js": "^2.22.3",
"html-react-parser": "^5",
"next": "^15.5.14",
"react": "19.1.1",
"react-dom": "19.1.1",
"swiper": "^11.0.5"
},
"devDependencies": {
"@graphql-codegen/cli": "^4.0.0",
"@graphql-codegen/typescript": "^4.0.0",
"@graphql-codegen/typescript-operations": "^4.0.0",
"@types/node": "20.2.5",
"@types/react": "19.1.8",
"@types/react-dom": "19.1.6",
"dotenv": "^16.3.1",
"eslint": "^9",
"eslint-config-next": "^15.5.14",
"graphql": "^16.6.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"sass": "^1.62.1",
"typescript": "^5.1.3"
},
"overrides": {
"@types/react": "19.1.8",
"@types/react-dom": "19.1.6"
}
}