forked from DustinBrett/daedalOS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
132 lines (132 loc) · 4.48 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "daedalos",
"version": "2.0.0",
"description": "Desktop environment in the browser",
"author": {
"name": "Dustin Brett",
"email": "dustinbrett@gmail.com",
"url": "https://dustinbrett.com"
},
"license": "MIT",
"browserslist": [
"defaults and supports es6 and not ie 11 and >1%"
],
"scripts": {
"build": "yarn build:prebuild && next build",
"build:bundle-analyzer": "yarn build",
"build:fs": "node scripts/fs2json.js --exclude .index --out public/.index/fs.9p.json ./public && node scripts/preloadIcons.js",
"build:html": "node scripts/minifyHtml.js",
"build:js": "node scripts/minifyJs.js",
"build:prebuild": "yarn build:fs && yarn build:search",
"build:robots": "node scripts/robots.js",
"build:search": "node scripts/searchIndex.js",
"deploy": "yarn build:robots && next export && yarn build:html && yarn build:js",
"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 build && next start",
"stylelint": "stylelint --formatter=verbose **/*.ts*",
"test": "jest",
"test:watch": "jest --watch",
"unused-exports": "ts-unused-exports tsconfig.json --excludePathsFromReport=pages"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write",
"*.{ts,tsx}": "stylelint --fix",
"*.{js,ts,tsx}": "eslint --fix"
},
"resolutions": {
"styled-components": "^5"
},
"dependencies": {
"@monaco-editor/react": "^4.4.5",
"@panzoom/panzoom": "^4.5.0",
"@wasmer/wasi": "0.12.0",
"@wasmer/wasm-terminal": "^0.12.0",
"@wasmer/wasm-transformer": "^0.12.0",
"@wasmer/wasmfs": "^0.12.0",
"ani-cursor": "^0.0.5",
"butterchurn-presets": "^3.0.0-beta.4",
"fflate": "^0.7.3",
"file-type": "^17.1.6",
"framer-motion": "^7.0.0",
"gif.js": "^0.2.0",
"html-to-image": "^1.9.0",
"idb": "^7.0.2",
"ini": "^3.0.0",
"isomorphic-git": "^1.19.1",
"music-metadata-browser": "^2.5.8",
"next": "^12.2.4",
"playlist-parser": "^0.0.12",
"prettier": "2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-rnd": "^10.3.7",
"resedit": "^1.6.0",
"styled-components": "^5.3.5",
"utif": "https://github.com/photopea/UTIF.js"
},
"devDependencies": {
"7z-wasm": "^1.0.0-beta.5",
"@next/bundle-analyzer": "^12.2.4",
"@next/eslint-plugin-next": "^12.2.4",
"@stylelint/postcss-css-in-js": "^0.38.0",
"@types/gif.js": "^0.2.2",
"@types/ini": "^1.3.31",
"@types/jest": "^28.1.6",
"@types/lunr": "^2.3.4",
"@types/node": "^18.6.4",
"@types/offscreencanvas": "^2019.7.0",
"@types/react": "^18.0.15",
"@types/styled-components": "^5.1.25",
"@types/video.js": "^7.3.43",
"@types/wicg-file-system-access": "^2020.9.5",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"browserfs": "https://github.com/jvilk/BrowserFS.git",
"byuu": "^0.16.0",
"emulators": "^0.73.7",
"emulators-ui": "^0.73.7",
"eruda": "^2.5.0",
"eslint": "^8.21.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-next": "^12.2.4",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.7.0",
"eslint-plugin-jest-dom": "^4.0.2",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sonarjs": "^0.14.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-typescript-sort-keys": "^2.1.0",
"eslint-plugin-unicorn": "^43.0.2",
"eslint-plugin-unused-imports": "^2.0.0",
"html-minifier-terser": "^7.0.0-beta.0",
"husky": "^8.0.1",
"jest": "^28.1.3",
"jest-environment-jsdom": "^28.1.3",
"lint-staged": "^13.0.3",
"lunr": "^2.3.9",
"monaco-editor": "^0.34.0",
"pdfjs-dist": "^2.15.349",
"postcss-syntax": "^0.36.2",
"stylelint": "^14.9.1",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-recommended": "^8.0.0",
"stylelint-config-sass-guidelines": "^9.0.1",
"stylelint-config-styled-components": "^0.1.1",
"terser": "^5.14.2",
"tinymce": "^6.1.2",
"ts-unused-exports": "^8.0.0",
"typescript": "^4.7.4",
"webamp": "^1.5.0",
"xlsx": "^0.18.5",
"xterm": "^4.19.0"
}
}