mirror of
https://github.com/encounter/decomp.me.git
synced 2026-03-30 11:06:27 -07:00
2c2f876e22
* Experimental objdiff integration (client-side) * Work around next.js stupidity * Port performance improvements to main diff view
99 lines
3.5 KiB
JSON
99 lines
3.5 KiB
JSON
{
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"dev": "next dev --port 8080",
|
|
"build": "next build",
|
|
"start": "next start --port 8080",
|
|
"lint": "next lint && yarn stylelint 'src/**/*.css' 'src/**/*.scss'",
|
|
"postinstall": "next telemetry disable",
|
|
"analyze": "ANALYZE=true next build",
|
|
"clean": "rm -rf .next node_modules"
|
|
},
|
|
"dependencies": {
|
|
"@clangd-wasm/clangd-wasm": "15.0.7-dev5",
|
|
"@codemirror/autocomplete": "^6.15.0",
|
|
"@codemirror/commands": "^6.3.3",
|
|
"@codemirror/language": "^6.10.1",
|
|
"@codemirror/lint": "^6.5.0",
|
|
"@codemirror/search": "^6.5.6",
|
|
"@codemirror/state": "^6.4.1",
|
|
"@codemirror/view": "^6.26.0",
|
|
"@ducanh2912/next-pwa": "^10.2.5",
|
|
"@lezer/common": "^1.2.1",
|
|
"@lezer/cpp": "^1.0.0",
|
|
"@lezer/highlight": "^1.2.0",
|
|
"@open-rpc/client-js": "^1.8.1",
|
|
"@primer/octicons-react": "^19.9.0",
|
|
"@radix-ui/colors": "^2.1.0",
|
|
"@radix-ui/react-progress": "^1.0.3",
|
|
"@react-hook/resize-observer": "^1.2.6",
|
|
"@replit/codemirror-indentation-markers": "^6.5.1",
|
|
"@replit/codemirror-vim": "^6.2.0",
|
|
"allotment": "^1.20.0",
|
|
"ansi-to-react": "^6.1.6",
|
|
"classnames": "^2.5.1",
|
|
"codemirror": "^6.0.1",
|
|
"dotenv": "^16.4.5",
|
|
"downshift": "9.0.0",
|
|
"fast-myers-diff": "^3.2.0",
|
|
"framer-motion": "^11.0.18",
|
|
"is-dark-color": "^1.2.0",
|
|
"memoize-one": "^5.2.1",
|
|
"next": "^14.1.4",
|
|
"next-plausible": "^3.12.0",
|
|
"next-pwa": "^5.6.0",
|
|
"objdiff-wasm": "2.0.0-beta.9",
|
|
"react": "^18.2.0",
|
|
"react-colorful": "^5.6.1",
|
|
"react-contenteditable": "^3.3.7",
|
|
"react-dom": "^18.2.0",
|
|
"react-laag": "^2.0.5",
|
|
"react-timeago": "^7.2.0",
|
|
"react-virtualized-auto-sizer": "^1.0.24",
|
|
"react-window": "^1.8.10",
|
|
"sass": "^1.72.0",
|
|
"swr": "^2.2.5",
|
|
"use-debounce": "^10.0.0",
|
|
"use-persisted-state": "^0.3.3",
|
|
"vscode-languageserver-protocol": "^3.17.5"
|
|
},
|
|
"devDependencies": {
|
|
"@next/bundle-analyzer": "^14.1.4",
|
|
"@next/eslint-plugin-next": "^14.1.4",
|
|
"@svgr/webpack": "^8.1.0",
|
|
"@types/react-dom": "^18.2.22",
|
|
"@types/react-timeago": "^4.1.7",
|
|
"@types/react-virtualized-auto-sizer": "^1.0.4",
|
|
"@types/react-window": "^1.8.8",
|
|
"@typescript-eslint/eslint-plugin": "^7.3.1",
|
|
"@typescript-eslint/parser": "^7.3.1",
|
|
"autoprefixer": "^10.4.19",
|
|
"css-loader": "^6.10.0",
|
|
"cssnano": "^6.1.1",
|
|
"eslint": "^8.57.0",
|
|
"eslint-config-next": "^14.1.4",
|
|
"eslint-formatter-rdjson": "^1.0.6",
|
|
"eslint-plugin-css-modules": "^2.12.0",
|
|
"eslint-plugin-react": "^7.34.1",
|
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
"eslint-plugin-tailwindcss": "^3.15.1",
|
|
"identity-obj-proxy": "^3.0.0",
|
|
"next-remove-imports": "^1.0.12",
|
|
"postcss": "^8.4.38",
|
|
"postcss-loader": "^8.1.1",
|
|
"postcss-scss": "^4.0.9",
|
|
"sass-loader": "^14.1.1",
|
|
"style-loader": "^3.3.4",
|
|
"stylelint": "^16.2.1",
|
|
"stylelint-config-css-modules": "^4.4.0",
|
|
"stylelint-config-standard-scss": "^13.0.0",
|
|
"tailwindcss": "^3.4.1",
|
|
"typescript": "^5.4.3",
|
|
"umd-compat-loader": "^2.1.2",
|
|
"webpack": "^5.91.0"
|
|
},
|
|
"browserslist": [
|
|
"last 2 versions and not dead and >= 1% and supports async-functions"
|
|
]
|
|
}
|