-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.62 KB
/
package.json
File metadata and controls
119 lines (119 loc) · 3.62 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
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "data-space-frontend",
"version": "0.2.0",
"private": true,
"scripts": {
"dev": "next dev --turbo",
"dev:fresh": "graphql-codegen --config ./config/codegen.ts && next dev --turbo",
"build": "graphql-codegen --config ./config/codegen.ts && NODE_OPTIONS='--max-old-space-size=4096' next build",
"start": "next start",
"lint": "eslint .",
"generate": "graphql-codegen --config ./config/codegen.ts",
"generate:ci": "graphql-codegen --config ./config/codegen.ts --silent || echo 'Codegen failed, continuing with existing files'",
"generate:watch": "graphql-codegen --config ./config/codegen.ts --watch",
"clean": "rm -rf node_modules package-lock.json .next",
"release": "release-it",
"style": "opub-tokens; echo \"\\033[33mRunning Prettier\"; prettier --write **/tailwind/*.js **/_variables.css"
},
"dependencies": {
"@commitlint/cli": "^19.2.1",
"@commitlint/config-conventional": "^19.1.0",
"@release-it/conventional-changelog": "^8.0.1",
"@sentry/nextjs": "^8.32.0",
"@t3-oss/env-nextjs": "^0.9.2",
"@tabler/icons-react": "^3.2.0",
"@tanstack/react-query": "^4.29.5",
"@types/node": "^20.1.3",
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"cryptr": "^6.3.0",
"echarts": "^5.4.3",
"echarts-for-react": "^3.0.2",
"graphql": "^16.6.0",
"graphql-request": "5.1.0",
"graphql-tag": "^2.12.6",
"gtag": "^1.0.1",
"holy-loader": "^2.2.10",
"jwt-decode": "^4.0.0",
"lucide-react": "^0.544.0",
"next": "15.5.9",
"next-auth": "^4.24.7",
"next-intl": "^3.4.0",
"nuqs": "^2.0.0",
"opub-ui": "^0.4.41",
"react": "^19.2.0",
"react-aria": "^3.36.0",
"react-dom": "^19.2.0",
"react-joyride": "^3.0.0-7",
"react-markdown": "^10.1.0",
"react-quill-new": "^3.3.4",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.1",
"sharp": "^0.33.2",
"usehooks-ts": "^3.0.0",
"zod": "^3.22.4",
"zustand": "^4.3.8"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.7",
"@graphql-codegen/client-preset": "3.0.1",
"@graphql-codegen/typescript": "^3.0.4",
"@graphql-codegen/typescript-graphql-request": "^4.5.9",
"@graphql-codegen/typescript-operations": "^3.0.4",
"@ianvs/prettier-plugin-sort-imports": "^4.1.1",
"@tailwindcss/typography": "^0.5.19",
"@types/dom-to-image": "^2.6.5",
"@typescript-eslint/eslint-plugin": "^8.46.4",
"@typescript-eslint/parser": "^8.46.4",
"eslint": "^9.12.0",
"eslint-config-next": "^15.5.6",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"jiti": "^1.21.0",
"opub-tokens": "latest",
"prettier": "^3.2.4",
"prettier-plugin-tailwindcss": "^0.5.11",
"release-it": "^17.1.1",
"tailwindcss": "^3.4.15",
"typescript": "^5.0.4"
},
"overrides": {
"usehooks-ts": "^3.0.0",
"nuqs": {
"@remix-run/react": "$@remix-run/react",
"react-router-dom": "$react-router-dom",
"react-router": "$react-router",
"@tanstack/react-router": "$@tanstack/react-router"
}
},
"release-it": {
"git": {
"commitMessage": "chore: release v${version}"
},
"github": {
"release": true
},
"npm": {
"publish": false
},
"plugins": {
"@release-it/conventional-changelog": {
"infile": "CHANGELOG.md",
"preset": {
"name": "conventionalcommits",
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{}
]
}
}
}
}
}