jsoncrack.com/package.json

91 lines
2.6 KiB
JSON
Raw Permalink 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,
"version": "0.0.0",
2024-09-11 19:59:11 +03:00
"author": {
2024-11-01 11:24:36 +03:00
"name": "Aykut Saraç",
"email": "aykutsarac0@gmail.com"
2024-09-11 19:59:11 +03:00
},
2022-08-30 11:16:52 +03:00
"homepage": "https://jsoncrack.com",
2024-09-11 19:59:11 +03:00
"bugs": {
"url": "https://github.com/AykutSarac/jsoncrack.com/issues"
},
2022-01-30 13:09:56 +03:00
"scripts": {
"dev": "next dev",
2023-07-16 15:44:10 +03:00
"build": "next build",
2024-11-12 17:28:14 +03:00
"postbuild": "next-sitemap --config next-sitemap.config.js",
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": {
2024-07-23 11:07:59 +03:00
"@mantine/code-highlight": "^7.11.2",
"@mantine/core": "^7.11.2",
"@mantine/dropzone": "^7.11.2",
"@mantine/hooks": "^7.11.2",
2023-12-24 14:07:06 +03:00
"@monaco-editor/react": "^4.6.0",
2024-07-23 11:07:59 +03:00
"@sentry/nextjs": "^7.118.0",
2024-01-19 22:06:35 +03:00
"@tanstack/react-query": "^4.36.1",
2024-07-23 11:07:59 +03:00
"allotment": "^1.20.2",
"axios": "^1.7.2",
"dayjs": "^1.11.12",
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-11-26 14:51:21 +03:00
"jq-web": "^0.5.1",
2024-10-23 14:12:01 +03:00
"js-cookie": "^3.0.5",
2023-12-24 14:07:06 +03:00
"js-yaml": "^4.1.0",
2024-07-23 11:07:59 +03:00
"json-2-csv": "^5.5.4",
2024-07-26 13:14:35 +03:00
"json-schema-faker": "^0.5.6",
2024-01-05 21:49:36 +03:00
"json_typegen_wasm": "^0.7.0",
2024-07-23 11:07:59 +03:00
"jsonc-parser": "^3.3.1",
2024-10-14 21:01:17 +03:00
"jsonpath-plus": "^10.0.0",
2023-09-26 21:24:47 +03:00
"jsonwebtoken": "^9.0.2",
2024-03-15 10:24:02 +03:00
"jxon": "2.0.0-beta.5",
2022-12-04 00:12:16 +03:00
"lodash.debounce": "^4.0.8",
2024-12-24 21:01:26 +03:00
"next": "14.2.21",
"next-seo": "^6.6.0",
2024-11-12 17:28:14 +03:00
"next-sitemap": "^4.2.3",
2024-09-01 15:49:55 +03:00
"nextjs-google-analytics": "^2.3.7",
"react": "^18.3.1",
2024-06-03 20:27:01 +03:00
"react-compare-slider": "^3.1.0",
2024-07-22 17:02:37 +03:00
"react-countup": "^6.5.3",
"react-dom": "^18.3.1",
2023-05-11 21:36:01 +03:00
"react-hot-toast": "^2.4.1",
"react-icons": "^5.2.1",
2023-12-17 14:52:50 +03:00
"react-json-tree": "^0.18.0",
2024-01-03 17:49:47 +03:00
"react-linkify-it": "^1.0.8",
2024-07-19 18:56:02 +03:00
"react-text-transition": "^3.1.0",
2023-08-12 16:57:22 +03:00
"react-zoomable-ui": "^0.11.0",
2024-12-24 21:01:26 +03:00
"reaflow": "5.2.11",
2024-07-23 11:07:59 +03:00
"styled-components": "^6.1.12",
2023-06-18 11:41:10 +03:00
"toml": "^3.0.0",
2024-01-19 22:06:35 +03:00
"use-long-press": "^3.2.0",
2024-07-23 11:07:59 +03:00
"zustand": "^4.5.4"
2022-01-30 13:09:56 +03:00
},
"devDependencies": {
2024-07-23 11:07:59 +03:00
"@next/bundle-analyzer": "^14.2.5",
2023-12-17 14:52:50 +03:00
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
2024-10-23 14:12:01 +03:00
"@types/js-cookie": "^3.0.6",
2023-12-24 14:07:06 +03:00
"@types/js-yaml": "^4.0.9",
2024-03-15 10:24:02 +03:00
"@types/jsonwebtoken": "^9.0.6",
2023-12-17 14:52:50 +03:00
"@types/jxon": "^2.0.5",
2024-07-23 11:07:59 +03:00
"@types/node": "^20.14.11",
"@types/react": "18.2.51",
"@types/react-dom": "^18.3.0",
2024-07-23 11:07:59 +03:00
"@typescript-eslint/eslint-plugin": "^7.17.0",
2023-12-17 14:52:50 +03:00
"eslint": "8.56.0",
2024-01-20 15:15:55 +03:00
"eslint-config-next": "14.1.0",
"eslint-config-prettier": "^9.1.0",
2024-07-23 11:07:59 +03:00
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-unused-imports": "^3.2.0",
2024-07-23 11:07:59 +03:00
"prettier": "^3.3.3",
2024-01-19 22:06:35 +03:00
"ts-node": "^10.9.2",
2023-12-24 13:59:30 +03:00
"typescript": "5.3.3"
},
"engines": {
"node": ">=18.x"
},
2024-06-03 20:27:01 +03:00
"packageManager": "pnpm@9.1.4"
2022-01-30 13:09:56 +03:00
}