mirror of
https://github.com/decompme/decomp.me.git
synced 2026-02-20 21:38:55 -06:00
* Switch from @shopify/web-worker to postMessage for useCompareExtension * Type safety * make formatting consistent --------- Co-authored-by: ConorBobbleHat <c.github@firstpartners.net>
95 lines
3.3 KiB
JSON
95 lines
3.3 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": {
|
|
"@codemirror/autocomplete": "^6.4.2",
|
|
"@codemirror/commands": "^6.1.2",
|
|
"@codemirror/lang-cpp": "^6.0.2",
|
|
"@codemirror/language": "^6.3.1",
|
|
"@codemirror/lint": "^6.1.0",
|
|
"@codemirror/search": "^6.2.3",
|
|
"@codemirror/state": "^6.1.4",
|
|
"@codemirror/view": "^6.7.0",
|
|
"@lezer/common": "^1.0.2",
|
|
"@lezer/highlight": "^1.1.3",
|
|
"@primer/octicons-react": "^17.2.0",
|
|
"@radix-ui/colors": "^0.1.8",
|
|
"@react-hook/resize-observer": "^1.2.2",
|
|
"@replit/codemirror-indentation-markers": "^6.1.0",
|
|
"allotment": "^1.17.1",
|
|
"ansi-to-react": "^6.1.6",
|
|
"classnames": "^2.3.1",
|
|
"codemirror": "^6.0.1",
|
|
"dotenv": "^16.0.3",
|
|
"downshift": "^6.1.7",
|
|
"fast-myers-diff": "^3.0.1",
|
|
"framer-motion": "^6.3.5",
|
|
"is-dark-color": "^1.2.0",
|
|
"next": "^13.2.4",
|
|
"next-plausible": "^3.1.4",
|
|
"next-pwa": "^5.6.0",
|
|
"react": "^18.2.0",
|
|
"react-colorful": "^5.6.1",
|
|
"react-contenteditable": "^3.3.6",
|
|
"react-dom": "^18.2.0",
|
|
"react-laag": "^2.0.4",
|
|
"react-modal": "^3.14.4",
|
|
"react-timeago": "^7.1.0",
|
|
"react-virtualized-auto-sizer": "^1.0.6",
|
|
"react-window": "^1.8.6",
|
|
"sass": "^1.42.1",
|
|
"sharp": "^0.31.3",
|
|
"swr": "^1.3.0",
|
|
"use-debounce": "^8.0.1",
|
|
"use-persisted-state": "^0.3.3"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.17.8",
|
|
"@next/bundle-analyzer": "^12.3.0",
|
|
"@next/eslint-plugin-next": "^12.1.6",
|
|
"@svgr/webpack": "^6.5.1",
|
|
"@types/diff": "^5.0.2",
|
|
"@types/react-modal": "^3.13.1",
|
|
"@types/react-timeago": "^4.1.3",
|
|
"@types/react-virtualized-auto-sizer": "^1.0.1",
|
|
"@types/react-window": "^1.8.5",
|
|
"@typescript-eslint/eslint-plugin": "^5.0.0",
|
|
"@typescript-eslint/parser": "^5.0.0",
|
|
"autoprefixer": "^10.3.1",
|
|
"babel-loader": "^8.2.4",
|
|
"css-loader": "^6.4.0",
|
|
"cssnano": "^5.0.7",
|
|
"eslint": "8.16.0",
|
|
"eslint-config-next": "^13.2.4",
|
|
"eslint-formatter-rdjson": "^1.0.5",
|
|
"eslint-plugin-css-modules": "^2.11.0",
|
|
"eslint-plugin-react": "^7.26.1",
|
|
"eslint-plugin-react-hooks": "^4.2.0",
|
|
"eslint-plugin-tailwindcss": "^3.7.1",
|
|
"identity-obj-proxy": "^3.0.0",
|
|
"next-remove-imports": "^1.0.6",
|
|
"postcss": "^8.3.6",
|
|
"postcss-loader": "^7.0.0",
|
|
"postcss-scss": "^4.0.4",
|
|
"sass-loader": "^13.0.0",
|
|
"style-loader": "^3.3.0",
|
|
"stylelint": "^14.16.0",
|
|
"stylelint-config-css-modules": "^4.1.0",
|
|
"stylelint-config-standard-scss": "^6.1.0",
|
|
"tailwindcss": "^3.2.7",
|
|
"typescript": "^4.9.5",
|
|
"webpack": "^5.76.2"
|
|
},
|
|
"browserslist": [
|
|
"last 2 versions and not dead and >= 1% and supports async-functions"
|
|
]
|
|
}
|