This repository has been archived by the owner on Feb 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
65 lines (65 loc) · 2.02 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
{
"name": "admin-panel",
"version": "0.1.0",
"private": true,
"engines": {
"node": "20"
},
"scripts": {
"build": "next build",
"codegen": "graphql-codegen --config codegen.yml",
"dev": "next dev",
"eslint:check": "next lint",
"prettier:check": "prettier --check .",
"prettier:fix": "prettier --write .",
"start": "next start",
"test": "jest",
"tsc:check": "tsc --pretty --noEmit --skipLibCheck"
},
"dependencies": {
"@apollo/client": "^3.8.6",
"@apollo/experimental-nextjs-app-support": "^0.7.0",
"@opentelemetry/api": "^1.6.0",
"@opentelemetry/exporter-trace-otlp-http": "^0.44.0",
"@opentelemetry/instrumentation-graphql": "^0.35.2",
"@opentelemetry/instrumentation-http": "^0.44.0",
"@opentelemetry/instrumentation-net": "^0.32.2",
"@opentelemetry/resources": "^1.17.1",
"@opentelemetry/sdk-node": "^0.48.0",
"@opentelemetry/sdk-trace-node": "^1.17.1",
"@opentelemetry/semantic-conventions": "^1.17.1",
"@svgr/webpack": "^8.1.0",
"@t3-oss/env-nextjs": "^0.7.1",
"graphql": "^16.8.1",
"next": "^13.5.6",
"next-auth": "^4.24.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sharp": "^0.32.6",
"typescript": "5.2.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@graphql-codegen/add": "^5.0.0",
"@graphql-codegen/cli": "^5.0.0",
"@graphql-codegen/client-preset": "^4.1.0",
"@graphql-codegen/typescript": "^4.0.1",
"@graphql-codegen/typescript-operations": "^4.0.1",
"@graphql-codegen/typescript-react-apollo": "^4.1.0",
"@graphql-inspector/cli": "^4.0.3",
"@types/jest": "^29.5.6",
"@types/node": "20.8.10",
"@types/react": "18.2.31",
"@types/react-dom": "18.2.14",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"autoprefixer": "^10.4.16",
"eslint": "8.52.0",
"eslint-config-next": "^13.5.6",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"postcss": "^8.4.31",
"prettier": "^3.0.3",
"tailwindcss": "^3.3.3",
"ts-jest": "^29.1.1"
}
}