This repository has been archived by the owner on Jan 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.05 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
{
"name": "ulmas",
"author": "Deathspike",
"description": "Unopinionated Local Media Asset Server.",
"license": "MIT",
"repository": "git://github.com/Deathspike/ulmas",
"version": "1.0.0-alpha.1",
"main": "dist/server",
"types": "dist/server",
"bin": {
"ulmas": "./bin/ulmas"
},
"engines": {
"npm": ">= 8.0.0",
"node": ">= 18.0.0"
},
"dependencies": {
"@nestjs/common": "8.4.4",
"@nestjs/core": "8.4.4",
"@nestjs/platform-express": "8.4.4",
"@nestjs/platform-ws": "8.4.4",
"@nestjs/swagger": "5.2.1",
"@nestjs/websockets": "8.4.4",
"cheerio": "1.0.0-rc.10",
"class-transformer": "0.5.1",
"class-validator": "0.13.2",
"compression": "1.7.4",
"express": "4.18.1",
"ipaddr.js": "2.0.1",
"luxon": "2.4.0",
"reflect-metadata": "0.1.13",
"rxjs": "7.5.5",
"swagger-ui-express": "4.3.0",
"tree-kill": "1.2.2",
"xml-formatter": "2.6.1"
},
"devDependencies": {
"electron": "18.2.0",
"electron-builder": "23.0.3",
"@types/react": "17.0.19",
"@types/react-dom": "17.0.9",
"@types/react-lazyload": "3.2.0",
"@emotion/react": "11.9.0",
"@emotion/styled": "11.8.1",
"@mui/icons-material": "5.8.0",
"@mui/material": "5.6.3",
"mobx": "6.3.3",
"mobx-react": "7.2.0",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-lazyload": "3.2.0",
"@types/compression": "1.7.2",
"@types/luxon": "2.3.2",
"rimraf": "3.0.2",
"source-map-loader": "3.0.0",
"typescript": "4.6.4",
"webpack": "5.72.0",
"webpack-cli": "4.9.2",
"webpack-dev-server": "4.8.1"
},
"scripts": {
"electron:build": "electron-builder",
"electron:serve": "electron dist/shell/app.js",
"prepare": "npm run repository:prune && npm run repository:build && npm run webpack:build",
"repository:build": "tsc",
"repository:prune": "rimraf build && rimraf dist && rimraf public/client.min.js",
"webpack:build": "webpack build --config webpack.production.js",
"webpack:serve": "webpack serve --config webpack.development.js"
}
}