-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.45 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.45 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
{
"name": "ioio",
"private": true,
"sideEffects": false,
"type": "module",
"scripts": {
"build": "remix vite:build",
"dev": "remix vite:dev",
"lint": "eslint --ignore-path .gitignore --cache --cache-location ./node_modules/.cache/eslint .",
"start": "NODE_OPTIONS='--import ./instrumentation.server.mjs' remix-serve ./build/server/index.js",
"typecheck": "tsc",
"lingui:extract": "lingui extract",
"lingui:compile": "lingui compile --typescript"
},
"dependencies": {
"@lingui/conf": "^5.1.0",
"@lingui/core": "^5.1.0",
"@lingui/detect-locale": "^5.1.0",
"@lingui/react": "^5.1.0",
"@mantine/code-highlight": "^7.15.1",
"@mantine/core": "^7.15.1",
"@mantine/hooks": "^7.15.1",
"@mantine/modals": "^7.15.1",
"@mantine/notifications": "^7.15.1",
"@mantine/nprogress": "^7.15.1",
"@mantine/spotlight": "^7.15.1",
"@monaco-editor/react": "^4.6.0",
"@remix-run/node": "^2.15.1",
"@remix-run/react": "^2.15.1",
"@remix-run/serve": "^2.15.1",
"@sentry/remix": "^8",
"@sentry/vite-plugin": "^2.22.7",
"@tanstack/react-virtual": "^3.11.1",
"@walmartlabs/json-to-simple-graphql-schema": "^3.0.1",
"accept-language-parser": "^1.5.0",
"clsx": "^2.1.1",
"confbox": "^0.1.8",
"dockview-core": "^2.0.0",
"dockview-react": "^2.0.0",
"generate-schema": "^2.6.0",
"gofmt.js": "^0.0.2",
"intl-parse-accept-language": "^1.0.0",
"isbot": "^5.1.17",
"java-parser": "^2.3.2",
"jotai": "^2.10.3",
"jotai-optics": "^0.4.0",
"js-yaml": "^4.1.0",
"json-to-go": "^1.0.1",
"json-to-zod": "^1.1.2",
"json-ts": "^1.6.4",
"json5": "^2.2.3",
"json_typegen_wasm": "^0.7.0",
"jsonc-parser": "^3.3.1",
"lodash": "^4.17.21",
"nanoid": "^5.0.9",
"optics-ts": "^2.4.1",
"query-string": "^9.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-use": "^17.6.0",
"smol-toml": "^1.3.1",
"transform-json-types": "^0.7.0"
},
"devDependencies": {
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@iconify/json": "^2.2.282",
"@lingui/babel-plugin-lingui-macro": "^5.1.0",
"@lingui/cli": "^5.1.0",
"@lingui/vite-plugin": "^5.1.0",
"@remix-run/dev": "^2.15.1",
"@svgr/core": "^8.1.0",
"@svgr/plugin-jsx": "^8.1.0",
"@types/accept-language-parser": "^1.5.6",
"@types/eslint": "~9.6.1",
"@types/eslint-plugin-jsx-a11y": "~6.10.0",
"@types/js-yaml": "~4.0.9",
"@types/json-to-go": "~1.0.0",
"@types/lodash": "^4.17.13",
"@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"@vitejs/plugin-react": "^4.3.4",
"autoprefixer": "^10.4.20",
"eslint": "^8.38.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"postcss": "^8.4.38",
"postcss-preset-mantine": "^1.17.0",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.4.2",
"typescript": "^5.1.6",
"unplugin-icons": "^0.21.0",
"unplugin-turbo-console": "^1.11.0",
"vite": "^5.1.0",
"vite-plugin-babel-macros": "^1.0.6",
"vite-plugin-dynamic-import": "^1.6.0",
"vite-plugin-top-level-await": "^1.4.4",
"vite-plugin-wasm": "^3.3.0",
"vite-tsconfig-paths": "^5.1.4"
},
"engines": {
"node": ">=20.0.0"
}
}