Files

86 lines
2.9 KiB
JSON
Raw Permalink Normal View History

2021-07-03 15:24:33 +01:00
{
"license": "MIT",
"scripts": {
"dev": "next dev --port 8080",
"build": "next build",
"start": "next start --port 8080",
2024-12-09 01:28:54 +09:00
"lint": "biome check .",
"format": "biome format . --write",
2022-09-19 14:42:59 +01:00
"postinstall": "next telemetry disable",
"analyze": "ANALYZE=true next build",
"clean": "rm -rf .next node_modules"
2021-07-03 15:24:33 +01:00
},
2021-07-05 20:05:42 +01:00
"dependencies": {
2023-06-04 06:15:27 +01:00
"@clangd-wasm/clangd-wasm": "15.0.7-dev5",
2024-12-09 01:28:54 +09:00
"@codemirror/autocomplete": "^6.18.3",
"@codemirror/commands": "^6.7.1",
"@codemirror/language": "^6.10.6",
"@codemirror/lint": "^6.8.4",
"@codemirror/search": "^6.5.8",
"@codemirror/state": "^6.4.1",
2024-12-09 01:28:54 +09:00
"@codemirror/view": "^6.35.2",
"@lezer/common": "^1.2.3",
"@lezer/cpp": "^1.1.2",
"@lezer/highlight": "^1.2.1",
2023-06-04 06:15:27 +01:00
"@open-rpc/client-js": "^1.8.1",
2024-12-09 01:28:54 +09:00
"@primer/octicons-react": "^19.13.0",
"@radix-ui/colors": "^2.1.0",
2024-12-09 01:28:54 +09:00
"@radix-ui/react-progress": "^1.1.0",
2023-05-08 23:56:45 +09:00
"@react-hook/resize-observer": "^1.2.6",
2024-12-09 01:28:54 +09:00
"@replit/codemirror-indentation-markers": "^6.5.3",
"@replit/codemirror-vim": "^6.2.1",
2025-06-15 09:30:42 +02:00
"@sentry/nextjs": "^9.28.1",
2025-05-13 20:58:31 +01:00
"allotment": "^1.20.3",
"ansi-to-react": "^6.1.6",
2025-03-04 17:54:52 +00:00
"clsx": "^2.1.1",
2022-12-08 08:48:08 -05:00
"codemirror": "^6.0.1",
"dotenv": "^16.4.5",
2025-06-18 17:52:22 +01:00
"downshift": "9.0.9",
"fast-myers-diff": "^3.2.0",
2025-06-18 17:52:22 +01:00
"framer-motion": "12.18.1",
2022-09-14 12:15:23 +01:00
"is-dark-color": "^1.2.0",
2024-12-09 01:28:54 +09:00
"memoize-one": "^6.0.0",
2025-06-18 17:52:22 +01:00
"next": "15.3.3",
2025-05-13 20:58:31 +01:00
"react": "19.1.0",
2022-09-14 12:15:23 +01:00
"react-colorful": "^5.6.1",
"react-contenteditable": "^3.3.7",
2024-09-14 23:09:40 +01:00
"react-date-object": "^2.1.9",
2025-05-13 20:58:31 +01:00
"react-dom": "19.1.0",
2023-05-08 23:56:45 +09:00
"react-laag": "^2.0.5",
2025-05-13 20:58:31 +01:00
"react-timeago": "^8.2.0",
"react-virtualized-auto-sizer": "^1.0.24",
"react-window": "^1.8.10",
2024-12-09 01:28:54 +09:00
"sass": "^1.82.0",
2025-05-13 20:58:31 +01:00
"swr": "^2.3.3",
2024-12-09 01:28:54 +09:00
"use-debounce": "^10.0.4",
"vscode-languageserver-protocol": "^3.17.5"
2021-07-05 20:05:42 +01:00
},
2021-07-03 15:24:33 +01:00
"devDependencies": {
2024-12-09 01:28:54 +09:00
"@biomejs/biome": "1.9.4",
2025-06-18 17:52:22 +01:00
"@next/bundle-analyzer": "15.3.3",
2023-10-03 11:19:49 +01:00
"@svgr/webpack": "^8.1.0",
2025-05-13 20:58:31 +01:00
"@types/react": "^19.1.3",
"@types/react-dom": "^19.1.3",
"@types/react-timeago": "^4.1.7",
"@types/react-virtualized-auto-sizer": "^1.0.4",
"@types/react-window": "^1.8.8",
2024-12-09 01:28:54 +09:00
"autoprefixer": "^10.4.20",
"css-loader": "^6.10.0",
2024-03-21 17:29:47 +09:00
"cssnano": "^6.1.1",
2021-10-16 13:37:43 +01:00
"identity-obj-proxy": "^3.0.0",
"next-remove-imports": "^1.0.12",
2024-12-09 01:28:54 +09:00
"postcss": "^8.4.49",
"postcss-loader": "^8.1.1",
"postcss-scss": "^4.0.9",
"sass-loader": "^14.1.1",
"style-loader": "^3.3.4",
2024-12-09 01:28:54 +09:00
"tailwindcss": "^3.4.16",
2025-05-13 20:58:31 +01:00
"typescript": "^5.8.3",
2023-06-04 06:15:27 +01:00
"umd-compat-loader": "^2.1.2",
2024-12-09 01:28:54 +09:00
"webpack": "^5.97.1"
2022-09-19 14:42:59 +01:00
},
"browserslist": [
"last 2 versions and not dead and >= 1% and supports async-functions"
]
2021-07-03 15:24:33 +01:00
}