-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.3 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.3 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
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
{
"name": "nrcs",
"version": "0.1.0",
"private": true,
"scripts": {
"prebuild": "pnpm generate:type && ts-node -P tsconfig.scripts.json scripts/fetchData.ts",
"_predev": "pnpm generate:type",
"generate-and-watch:type": "graphql-codegen --require dotenv/config --config codegen.ts --watch",
"generate:type": "graphql-codegen --require dotenv/config --config codegen.ts",
"dev": "next dev -p $PORT",
"build": "next build",
"export": "next export",
"_prestart": "pnpm generate:type",
"start": "next start",
"typecheck": "tsc",
"prelint": "pnpm prebuild",
"lint": "next lint"
},
"engines": {
"node": "22",
"pnpm": "10.4.0"
},
"dependencies": {
"@eslint/eslintrc": "^3",
"@eslint/js": "^9.25.0",
"@eslint/json": "^0.12.0",
"@next/eslint-plugin-next": "^15.1.8",
"@togglecorp/fujs": "^2.2.0",
"@urql/core": "^6.0.1",
"@urql/next": "^2.0.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import-newlines": "^1.4.0",
"eslint-plugin-postcss-modules": "^2.0.0",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.19",
"eslint-plugin-simple-import-sort": "^12.1.1",
"graphql": "^16.11.0",
"graphql-request": "^7.2.0",
"next": "15.3.1",
"next-urql": "^5.0.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-icons": "^5.5.0",
"remark": "^15.0.1",
"remark-breaks": "^4.0.0",
"remark-gfm": "^4.0.1",
"remark-html": "^16.0.1",
"urql": "^5.0.0"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.7",
"@graphql-codegen/client-preset": "^4.8.2",
"@graphql-typed-document-node/core": "^3.2.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@typescript-eslint/eslint-plugin": "^8.30.1",
"@typescript-eslint/parser": "^8.30.1",
"eslint": "^9",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-next": "15.3.1",
"next-export-optimize-images": "^4.6.2",
"ts-node": "^10.9.2",
"typescript": "^5"
},
"packageManager": "pnpm@10.4.0"
}