-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
130 lines (130 loc) · 4.1 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
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
120
121
122
123
124
125
126
127
128
129
130
{
"name": "openhexa-frontend",
"private": true,
"engines": {
"node": ">= 20"
},
"scripts": {
"build:ci": "CI=1 next build",
"build": "next build",
"codegen": "find ./src -type f -name \"*.generated.tsx\" -delete && graphql-codegen --config codegen.yml",
"dev:server": "node -r dotenv/config server/index.mjs",
"dev": "npm-run-all --parallel 'dev:server' 'codegen -- --watch'",
"format": "prettier --write src",
"i18n:extract": "i18next",
"i18n:translate": "node ./scripts/translate.mjs ./public/locales",
"i18n:validate": "i18next && node ./scripts/validate-i18n.mjs",
"lint": "next lint --dir src",
"next": "next",
"prepare": "husky",
"schema": "npx -y get-graphql-schema http://localhost:8000/graphql/ > schema.graphql",
"start": "NODE_ENV=production node server/index.mjs",
"test:ci": "jest --ci",
"test": "jest --watch"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"graphql": {
"schema": "./schema.graphql"
},
"dependencies": {
"@apollo/client": "^3.11.8",
"@apollo/link-error": "^2.0.0-beta.3",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/lang-python": "^6.1.6",
"@headlessui/react": "^2.2.0",
"@heroicons/react": "^2.1.5",
"@next/bundle-analyzer": "^15.0.1",
"@popperjs/core": "^2.11.8",
"@sentry/nextjs": "^8.32.0",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/line-clamp": "^0.4.4",
"@tailwindcss/typography": "^0.5.15",
"@tanstack/react-table": "^8.20.5",
"@types/jest": "^29.5.13",
"@types/lodash": "^4.17.7",
"@types/node": "^22.5.5",
"@types/react": "^18.3.1",
"@types/uuid": "^10.0.0",
"@uiw/react-codemirror": "^4.23.2",
"clsx": "^2.1.1",
"codemirror": "^6.0.1",
"codemirror-lang-r": "^0.1.0-2",
"cookies-next": "^5.0.0",
"cron-parser": "^4.9.0",
"cronstrue": "^2.50.0",
"deepmerge": "^4.3.1",
"dotenv": "^16.4.5",
"dropzone": "^6.0.0-beta.2",
"express": "^4.21.0",
"express-http-proxy": "^2.1.1",
"filesize": "^10.1.6",
"graphql": "^16.9.0",
"i18next": "^24.0.0",
"isomorphic-unfetch": "^4.0.2",
"linkify-react": "^4.1.3",
"linkifyjs": "^4.1.3",
"lodash": "^4.17.21",
"luxon": "^3.5.0",
"next": "^15.0.1",
"next-i18next": "^15.3.1",
"nextjs-progressbar": "^0.0.16",
"pluralize": "^8.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-dropzone": "^14.2.3",
"react-hotkeys-hook": "^4.5.1",
"react-i18next": "^15.1.0",
"react-markdown": "^9.0.1",
"react-popper": "^2.3.0",
"react-popper-tooltip": "^4.4.2",
"react-table": "^7.8.0",
"react-toastify": "^11.0.0",
"typescript": "^5.6.2",
"use-onclickoutside": "^0.4.1",
"uuid": "^11.0.0"
},
"devDependencies": {
"@faker-js/faker": "^9.0.1",
"@graphql-codegen/cli": "^5.0.2",
"@graphql-codegen/introspection": "4.0.3",
"@graphql-codegen/near-operation-file-preset": "^3.0.0",
"@graphql-codegen/typescript": "^4.0.9",
"@graphql-codegen/typescript-operations": "^4.2.3",
"@graphql-codegen/typescript-react-apollo": "^4.3.2",
"@next/eslint-plugin-next": "^15.0.0",
"@testing-library/jest-dom": "^6.5.0",
"@testing-library/react": "^16.0.1",
"@testing-library/user-event": "^14.5.2",
"@types/express": "^5.0.0",
"@types/luxon": "^3.4.2",
"@types/pluralize": "^0.0.33",
"@types/react-table": "^7.7.20",
"@types/sync-fetch": "^0.4.3",
"autoprefixer": "10.4.20",
"babel-jest": "^29.7.0",
"chalk": "^5.3.0",
"deepl-node": "^1.14.0",
"eslint": "^8",
"eslint-config-next": "^15.0.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.6",
"i18next-parser": "^9.0.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.10",
"next-router-mock": "^0.9.13",
"npm-run-all2": "^7.0.0",
"postcss": "^8.4.47",
"prettier": "3.4.2",
"prettier-plugin-tailwindcss": "^0.6.6",
"tailwindcss": "^3.4.12"
},
"version": "0.56.1"
}