-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.8 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.8 KB
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
{
"name": "filexplorer",
"version": "2.2.5",
"main": "index.js",
"license": "MIT",
"type": "module",
"bin": {
"fe": "./lib/cli.js"
},
"engines": {
"node": ">=18"
},
"files": [
"public",
"resources",
"lib",
"LICENSE",
"README.md"
],
"scripts": {
"clean": "rm -rf lib",
"build": "tsc",
"start": "node --experimental-wasm-modules --experimental-import-meta-resolve lib",
"start:dev": "ts-node --experimental-wasm-modules --experimental-import-meta-resolve",
"prepublishOnly": "yarn build"
},
"dependencies": {
"args": "^5.0.3",
"chalk": "^5.0.1",
"cornfig-wasm": "^0.2.3",
"cors": "^2.8.5",
"cuid": "^2.1.8",
"express": "^4.20.0",
"handlebars": "^4.7.9",
"highlight.js": "^11.5.1",
"istextorbinary": "^6.0.0",
"luxon": "^2.5.2",
"marked": "^4.0.16",
"mime-types": "^2.1.35",
"morgan": "^1.10.0",
"multer": "^2.1.1",
"socket.io": "^4.6.2",
"sqlite": "^4.1.1",
"sqlite3": "^5.1.5",
"toml": "^3.0.0",
"uuid": "^14.0.0",
"winston": "^3.7.2",
"yaml": "^2.8.3"
},
"devDependencies": {
"@types/args": "^5.0.0",
"@types/copyfiles": "^2.4.1",
"@types/cors": "^2.8.12",
"@types/cuid": "^2.0.1",
"@types/eslint": "^8.4.2",
"@types/express": "^4.17.13",
"@types/luxon": "^2.3.2",
"@types/marked": "^4.0.3",
"@types/mime-types": "^2.1.1",
"@types/morgan": "^1.9.3",
"@types/multer": "^1.4.7",
"@types/node": "^18.16.18",
"@types/prettier": "^2.6.3",
"@types/sqlite3": "^3.1.8",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"copyfiles": "^2.4.1",
"eslint": "^8.16.0",
"prettier": "^2.6.2",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
}
}