-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.72 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.72 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
{
"name": "data-exchange-frontend",
"version": "0.1.4",
"private": true,
"scripts": {
"dev": "graphql-codegen --config ./config/codegen.ts && next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"generate": "graphql-codegen --config ./config/codegen.ts",
"clean": "rm -rf node_modules package-lock.json",
"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": "^18.2.0",
"@types/react-dom": "^18.2.0",
"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",
"holy-loader": "^2.2.10",
"jwt-decode": "^4.0.0",
"next": "^14.0.4",
"next-auth": "^4.24.7",
"next-intl": "^3.4.0",
"next-usequerystate": "^1.17.2",
"opub-ui": "0.3.88",
"react": "^18.2.0",
"react-aria": "3.22.0",
"react-dom": "^18.2.0",
"sharp": "^0.33.2",
"usehooks-ts": "^2.13.0",
"zod": "^3.22.4",
"zustand": "^4.3.8"
},
"devDependencies": {
"@graphql-codegen/cli": "3.3.1",
"@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",
"@types/dom-to-image": "^2.6.5",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.1.2",
"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",
"typescript": "^5.0.4"
},
"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"
},
{}
]
}
}
}
}
}