jsoncrack.com/package.json

80 lines
2.4 KiB
JSON
Raw Normal View History

2022-01-30 13:09:56 +03:00
{
2022-08-30 12:06:15 +03:00
"name": "json-crack",
2022-01-30 13:09:56 +03:00
"private": true,
2023-12-17 22:08:20 +03:00
"version": "v3.2.0",
2023-12-17 14:52:50 +03:00
"license": "GPL-3.0",
2022-08-27 18:10:38 +03:00
"author": "https://github.com/AykutSarac",
2022-08-30 11:16:52 +03:00
"homepage": "https://jsoncrack.com",
2022-01-30 13:09:56 +03:00
"scripts": {
"dev": "next dev",
2023-07-16 15:44:10 +03:00
"build": "next build",
2022-01-30 13:09:56 +03:00
"start": "next start",
2023-12-17 15:21:36 +03:00
"lint": "tsc --project tsconfig.json && eslint src && prettier --check src",
2023-07-16 15:44:10 +03:00
"lint:fix": "eslint --fix src & prettier --write src",
2023-07-16 22:38:34 +03:00
"analyze": "ANALYZE=true npm run build"
2022-01-30 13:09:56 +03:00
},
"dependencies": {
2023-12-24 13:59:30 +03:00
"@mantine/code-highlight": "^7.3.2",
"@mantine/core": "^7.3.2",
"@mantine/hooks": "^7.3.2",
2023-12-24 14:07:06 +03:00
"@monaco-editor/react": "^4.6.0",
2023-12-24 13:59:30 +03:00
"@sentry/nextjs": "^7.91.0",
2023-09-26 21:24:47 +03:00
"@supabase/auth-helpers-nextjs": "^0.8.1",
2023-08-03 10:43:13 +03:00
"@supabase/auth-helpers-react": "^0.4.2",
2023-12-24 13:59:30 +03:00
"@supabase/supabase-js": "^2.39.1",
2023-09-26 21:24:47 +03:00
"@tanstack/react-query": "^4.35.3",
2023-12-17 14:52:50 +03:00
"allotment": "^1.19.3",
2023-09-26 21:24:47 +03:00
"axios": "^1.5.0",
"dayjs": "^1.11.10",
2023-12-17 16:10:48 +03:00
"gofmt.js": "^0.0.2",
2023-02-08 23:32:06 +03:00
"html-to-image": "^1.11.11",
2023-09-28 10:24:50 +03:00
"jq-in-the-browser": "^0.7.2",
2023-11-26 14:51:21 +03:00
"jq-web": "^0.5.1",
2023-12-24 14:07:06 +03:00
"js-yaml": "^4.1.0",
2023-12-17 14:52:50 +03:00
"json-2-csv": "^5.0.1",
2023-11-26 14:51:21 +03:00
"json-to-ts": "^1.7.0",
2022-10-05 20:33:17 +03:00
"jsonc-parser": "^3.2.0",
2023-09-26 21:24:47 +03:00
"jsonwebtoken": "^9.0.2",
2023-06-18 11:41:10 +03:00
"jxon": "^2.0.0-beta.5",
2022-12-04 00:12:16 +03:00
"lodash.debounce": "^4.0.8",
2023-05-21 12:41:21 +03:00
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2",
2023-11-26 14:51:21 +03:00
"maketypes": "^1.1.2",
2023-12-24 13:59:30 +03:00
"next": "14.0.4",
2022-08-09 16:39:56 +03:00
"react": "^18.2.0",
"react-dom": "^18.2.0",
2023-08-09 18:00:08 +03:00
"react-ga4": "^2.1.0",
2023-05-11 21:36:01 +03:00
"react-hot-toast": "^2.4.1",
2023-12-17 14:52:50 +03:00
"react-icons": "^4.12.0",
"react-json-tree": "^0.18.0",
2022-08-13 14:41:02 +03:00
"react-linkify-it": "^1.0.7",
2023-06-18 11:41:10 +03:00
"react-simple-typewriter": "^5.0.1",
2023-08-12 16:57:22 +03:00
"react-zoomable-ui": "^0.11.0",
2023-12-17 14:52:50 +03:00
"reaflow": "5.2.8",
2023-12-24 13:59:30 +03:00
"styled-components": "^6.1.3",
2023-06-18 11:41:10 +03:00
"toml": "^3.0.0",
2023-08-12 16:57:22 +03:00
"use-long-press": "^3.1.5",
2023-12-17 14:52:50 +03:00
"zustand": "^4.4.7"
2022-01-30 13:09:56 +03:00
},
"devDependencies": {
2023-08-04 13:59:26 +03:00
"@next/bundle-analyzer": "^13.4.12",
2023-12-17 14:52:50 +03:00
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
2023-12-24 14:07:06 +03:00
"@types/js-yaml": "^4.0.9",
2023-12-17 14:52:50 +03:00
"@types/jsonwebtoken": "^9.0.5",
"@types/jxon": "^2.0.5",
"@types/lodash.debounce": "^4.0.9",
"@types/lodash.get": "^4.4.9",
"@types/lodash.set": "^4.3.9",
2023-08-04 13:59:26 +03:00
"@types/node": "^20.4.7",
2023-12-24 13:59:30 +03:00
"@types/react": "18.2.45",
2023-12-17 14:52:50 +03:00
"eslint": "8.56.0",
2023-12-24 13:59:30 +03:00
"eslint-config-next": "14.0.4",
2023-08-03 10:43:13 +03:00
"eslint-config-prettier": "^8.10.0",
2023-07-16 15:44:10 +03:00
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
2023-12-17 14:52:50 +03:00
"prettier": "^3.1.1",
2022-08-09 16:39:56 +03:00
"ts-node": "^10.9.1",
2023-12-24 13:59:30 +03:00
"typescript": "5.3.3"
2022-01-30 13:09:56 +03:00
}
}