Files
daedalOS/package.json
2022-03-07 20:24:31 -08:00

109 lines
3.7 KiB
JSON

{
"name": "daedalos",
"version": "2.0.0",
"description": "Desktop environment in the browser",
"author": "Dustin Brett",
"license": "MIT",
"browserslist": [
"defaults and supports es6 and not ie 11 and >1%"
],
"scripts": {
"build": "npm run build:fs && npm run build:search && next build",
"build:fs": "cd public && node ../scripts/fs2json.js --exclude .index --out .index/fs.9p.json . && node ../node_modules/browserfs/dist/scripts/make_http_index.js > .index/fs.bfs.json",
"build:html": "node scripts/minifyHtml.js",
"build:robots": "node scripts/robots.js",
"build:search": "node scripts/searchIndex.js",
"deploy": "npm run build:robots && next export && npm run build:html",
"docker:build": "docker build -t daedalos .",
"docker:run": "docker run -dp 3000:3000 --rm --name daedalos daedalos",
"dev": "next dev",
"eslint": "eslint --report-unused-disable-directives .",
"export": "next export",
"prepare": "husky install",
"prettier": "prettier --write .",
"start": "next start",
"stylelint": "stylelint --formatter=verbose **/*.ts*",
"test": "jest",
"test:watch": "jest --watch"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write",
"*.{ts,tsx}": "stylelint --fix",
"*.{js,ts,tsx}": "eslint --fix"
},
"resolutions": {
"styled-components": "^5"
},
"dependencies": {
"@monaco-editor/react": "^4.3.1",
"@panzoom/panzoom": "^4.4.4",
"@wasmer/wasi": "0.12.0",
"@wasmer/wasm-terminal": "^0.12.0",
"@wasmer/wasm-transformer": "^0.12.0",
"@wasmer/wasmfs": "^0.12.0",
"fflate": "^0.7.3",
"framer-motion": "6.2.8",
"html-to-image": "^1.9.0",
"idb-keyval": "^6.1.0",
"ini": "^2.0.0",
"isomorphic-git": "^1.13.1",
"music-metadata-browser": "^2.5.5",
"next": "^12.1.0",
"node-unrar-js": "^1.0.5",
"prettier": "^2.5.1",
"react": "^18.0.0-rc.1",
"react-dom": "^18.0.0-rc.1",
"react-rnd": "^10.3.5",
"styled-components": "^5.3.3"
},
"devDependencies": {
"@next/eslint-plugin-next": "^12.1.0",
"@stylelint/postcss-css-in-js": "^0.37.2",
"@types/ini": "^1.3.31",
"@types/jest": "^27.4.1",
"@types/lunr": "^2.3.4",
"@types/node": "^17.0.21",
"@types/offscreencanvas": "^2019.6.4",
"@types/react": "^17.0.39",
"@types/styled-components": "^5.1.24",
"@types/video.js": "^7.3.31",
"@types/wicg-file-system-access": "^2020.9.5",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"browserfs": "https://github.com/jvilk/BrowserFS.git",
"emulators": "^0.72.5",
"emulators-ui": "^0.72.9",
"eruda": "https://github.com/liriliri/eruda",
"eslint": "^8.10.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "^12.1.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jest": "^26.1.1",
"eslint-plugin-jest-dom": "^4.0.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sonarjs": "^0.12.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-unicorn": "^41.0.0",
"html-minifier-terser": "^7.0.0-alpha.1",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.5",
"lunr": "^2.3.9",
"monaco-editor": "^0.32.1",
"pdfjs-dist": "^2.13.216",
"postcss-syntax": "^0.36.2",
"stylelint": "^14.5.3",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended": "^7.0.0",
"stylelint-config-sass-guidelines": "^9.0.1",
"stylelint-config-styled-components": "^0.1.1",
"tinymce": "5.10.3",
"typescript": "^4.6.2",
"webamp": "^1.5.0",
"xterm": "4.18.0"
}
}